Skip to content

Commit 6266ada

Browse files
committed
Prep for v3 release
This is a prep for the first stable v3 release of registry. Signed-off-by: Milos Gajdos <[email protected]>
1 parent 2e63da9 commit 6266ada

File tree

2 files changed

+59
-1
lines changed

2 files changed

+59
-1
lines changed

releases/v3.0.0.toml

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# commit to be tagged for new release
2+
commit = "HEAD"
3+
4+
project_name = "registry"
5+
github_repo = "distribution/distribution"
6+
7+
# previous release
8+
previous = "v3.0.0-rc.4"
9+
10+
pre_release = true
11+
12+
preface = """\
13+
registry 3.0.0
14+
15+
Welcome to the v3.0.0 release of registry!
16+
17+
*This is a stable releasese*
18+
19+
registry 3.0.0
20+
21+
Please try out the release binaries and report any issues at
22+
https://github.com/distribution/distribution/issues.
23+
24+
### Contributors
25+
26+
* Milos Gajdos
27+
28+
### Changes
29+
<details><summary>7 commits</summary>
30+
<p>
31+
* [`2e63da99`](https://github.com/distribution/distribution/commit/2e63da99776be71a17be3f79f60e4c3f485b87e1) Fix golangci-lint config (#4612)
32+
* [`fd14cf19`](https://github.com/distribution/distribution/commit/fd14cf193339eb2300828363560884f4ccbadba3) Vrify the linter config first before running it
33+
* [`3a33ba12`](https://github.com/distribution/distribution/commit/3a33ba12ad9a436792c1e89a3732f8600940f6e6) Fix golangci-lint config
34+
* [`75f32197`](https://github.com/distribution/distribution/commit/75f32197b6f180518d17210195ae0d3eb3885ce5) Bump Azure deps (#4611)
35+
* [`52f0f6c4`](https://github.com/distribution/distribution/commit/52f0f6c45d5397ebff48778b7c5c8b1dec89e572) Bump Azure deps
36+
* [`ef21149b`](https://github.com/distribution/distribution/commit/ef21149b4999ac0be22fe292640491b55cac9d9b) build(deps): bump github.com/golang-jwt/jwt/v5 from 5.2.1 to 5.2.2 in the go_modules group across 1 directory (#4608)
37+
* [`05b308bc`](https://github.com/distribution/distribution/commit/05b308bc42519068f6157747301f5e68ef01b9af) build(deps): bump github.com/golang-jwt/jwt/v5
38+
</p>
39+
</details>
40+
41+
### Dependency Changes
42+
43+
* **github.com/Azure/azure-sdk-for-go/sdk/azcore** v1.11.1 -> v1.17.1
44+
* **github.com/Azure/azure-sdk-for-go/sdk/azidentity** v1.6.0 -> v1.8.2
45+
* **github.com/Azure/azure-sdk-for-go/sdk/internal** v1.8.0 -> v1.10.0
46+
* **github.com/Azure/azure-sdk-for-go/sdk/storage/azblob** v1.0.0 -> v1.6.0
47+
* **github.com/AzureAD/microsoft-authentication-library-for-go** v1.2.2 -> v1.3.3
48+
* **github.com/golang-jwt/jwt/v5** v5.2.1 -> v5.2.2
49+
* **github.com/redis/go-redis/v9** v9.1.0 -> v9.7.3
50+
* **golang.org/x/crypto** v0.35.0 -> v0.36.0
51+
* **golang.org/x/net** v0.36.0 -> v0.37.0
52+
* **golang.org/x/oauth2** v0.23.0 -> v0.28.0
53+
* **golang.org/x/sync** v0.11.0 -> v0.12.0
54+
* **golang.org/x/sys** v0.30.0 -> v0.31.0
55+
* **golang.org/x/text** v0.22.0 -> v0.23.0
56+
57+
Previous release can be found at [v3.0.0-rc.4](https://github.com/distribution/distribution/releases/tag/v3.0.0-rc.4)
58+
"""

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var mainpkg = "github.com/distribution/distribution/v3"
88
// the latest release tag by hand, always suffixed by "+unknown". During
99
// build, it will be replaced by the actual version. The value here will be
1010
// used if the registry is run after a go get based install.
11-
var version = "v3.0.0-rc.4+unknown"
11+
var version = "v3.0.0+unknown"
1212

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

0 commit comments

Comments
 (0)