You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm unable to download the 1.21 release via jenkins unless I specify 1.21.0
Once we move to a new minor release, we should be able to specify that and not have to wait until a patch version (1.21.1) to be able to specify 1.21
Works: curl https://dl.google.com/go/go1.21.0.linux-amd64.tar.gz --output go1.21.0.linux-amd64.tar.gz
Doesn't Work: curl https://dl.google.com/go/go1.21.linux-amd64.tar.gz --output go1.21.linux-amd64.tar.gz
The text was updated successfully, but these errors were encountered:
ctm8788
changed the title
proposal: affected/package: Cut a 1.## release with every new minor release
proposal: affected/package: Cut a latest 1.## release with every new minor release
Aug 18, 2023
This goes against our policy of providing stable / explicit versioning, both for the go distribution and dependencies in general.
You can parse the latest version out of the API endpoint https://go.dev/dl/?mode=json
Go 1.21 introduces a small change to the numbering of releases. In the past, we used Go 1.N to refer to both the overall Go language version and release family as well as the first release in that family. Starting in Go 1.21, the first release is now Go 1.N.0.
Currently 1.21 was just released as 1.21.0 .
I'm unable to download the 1.21 release via jenkins unless I specify 1.21.0
Once we move to a new minor release, we should be able to specify that and not have to wait until a patch version (1.21.1) to be able to specify 1.21
Works:
curl https://dl.google.com/go/go1.21.0.linux-amd64.tar.gz --output go1.21.0.linux-amd64.tar.gz
Doesn't Work:
curl https://dl.google.com/go/go1.21.linux-amd64.tar.gz --output go1.21.linux-amd64.tar.gz
The text was updated successfully, but these errors were encountered: