Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for v2.7.2 release #3380

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
43 changes: 43 additions & 0 deletions releases/v2.7.2.toml
@@ -0,0 +1,43 @@
# commit to be tagged for new release
commit = "HEAD"

project_name = "registry"
github_repo = "distribution/distribution"

# previous release
previous = "v2.7.1"

pre_release = false

preface = """\
The 2.7.2 registry release has been a long time overdue.
This is a patch release that improves docs, CI builds
and adds a few bug fixes.

See changelog below for full list of changes

### Bugfixes

* Close the io.ReadCloser from storage driver [#3370](https://github.com/distribution/distribution/pull/3370)
* Remove empty Content-Type header [#3297](https://github.com/distribution/distribution/pull/3297)
* Make ipfilteredby not required [#3088](https://github.com/distribution/distribution/pull/3088)

### CI build

* First draft of actions based ci [#3347](https://github.com/distribution/distribution/pull/3347)
* Fix vndr and check [#3001](https://github.com/distribution/distribution/pull/3001)

### Documentation

* Add redirect for old URL [#3197](https://github.com/distribution/distribution/pull/3197)
* Fix broken table [#3073](https://github.com/distribution/distribution/pull/3073)
* Adding deprecated schema instructions [#2987](https://github.com/distribution/distribution/pull/2987)

### Storage drivers

* S3 Driver: add support for ceph radosgw [#3119](https://github.com/distribution/distribution/pull/3119)

### Dependency Changes

This release has no dependency changes
"""
2 changes: 1 addition & 1 deletion version/version.go
Expand Up @@ -8,7 +8,7 @@ var Package = "github.com/docker/distribution"
// the latest release tag by hand, always suffixed by "+unknown". During
// build, it will be replaced by the actual version. The value here will be
// used if the registry is run after a go get based install.
var Version = "v2.7.1+unknown"
var Version = "v2.7.2+unknown"

// Revision is filled with the VCS (e.g. git) revision being used to build
// the program at linking time.
Expand Down