mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-21 06:04:33 +00:00
chore: retract v1.13.14-0.1.0.rc-2 (#141)
## Why this should be merged Our initial release tags weren't well-formed for our needs. Although the format was locked in in #81, I still stuffed up rc2. With the upcoming rc3 release, we want to ensure that Go tooling picks it up as the latest, which requires retracting rc2 as its format means it will take higher precedence. ## How this works `go.mod` `retract` ## How this was tested n/a
This commit is contained in:
parent
f7a3a4f548
commit
53867ac3f1
1 changed files with 5 additions and 1 deletions
6
go.mod
6
go.mod
|
|
@ -2,7 +2,11 @@ module github.com/ava-labs/libevm
|
|||
|
||||
go 1.20
|
||||
|
||||
retract v1.13.14-0.1.0-rc.1 // bad semver format ("0-rc" grouping) considered > .rc-2
|
||||
retract (
|
||||
// Bad semver formats resulting in incorrect precedence
|
||||
v1.13.14-0.1.0-rc.1
|
||||
v1.13.14-0.1.0.rc-2
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue