From 6736d1881aefeea97d0ed7330721821c7cae37a8 Mon Sep 17 00:00:00 2001 From: Milos Gajdos Date: Thu, 24 Feb 2022 11:22:04 +0000 Subject: [PATCH] Prepare for v2.8.1 release Signed-off-by: Milos Gajdos --- .mailmap | 3 +++ releases/v2.8.1.toml | 27 +++++++++++++++++++++++++++ version/version.go | 2 +- 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 releases/v2.8.1.toml diff --git a/.mailmap b/.mailmap index 34421a4ec0..8f3738f3d0 100644 --- a/.mailmap +++ b/.mailmap @@ -44,3 +44,6 @@ Thomas Berger Thomas Berger Samuel Karp Samuel Karp Justin Cormack sayboras +CrazyMax +CrazyMax <1951866+crazy-max@users.noreply.github.com> +CrazyMax diff --git a/releases/v2.8.1.toml b/releases/v2.8.1.toml new file mode 100644 index 0000000000..f40271f779 --- /dev/null +++ b/releases/v2.8.1.toml @@ -0,0 +1,27 @@ +# commit to be tagged for new release +commit = "HEAD" + +project_name = "registry" +github_repo = "distribution/distribution" + +# previous release +previous = "v2.8.0" + +pre_release = false + +preface = """\ +The 2.8.1 registry release fixes the Go module issues that have popped up in the v2.8.0 + +There have been no chages made in the released binaries. + +See changelog below for full list of changes. + +### CI +* ci: use proper git ref for versioning [#3595](https://github.com/distribution/distribution/pull/3595) + +### Dependency Changes + +This release has no dependency changes + +Previous release can be found at [v2.8.0](https://github.com/distribution/distribution/releases/tag/v2.8.0) +""" diff --git a/version/version.go b/version/version.go index dcd83ac8c6..a55f53144a 100644 --- a/version/version.go +++ b/version/version.go @@ -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.8.0-beta.1+unknown" +var Version = "v2.8.1+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.