Skip to content

chore: retract v1.13.14-0.1.0-rc.1 #81

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

Merged
merged 2 commits into from
Dec 3, 2024
Merged

chore: retract v1.13.14-0.1.0-rc.1 #81

merged 2 commits into from
Dec 3, 2024

Conversation

ARR4N
Copy link
Collaborator

@ARR4N ARR4N commented Dec 3, 2024

Why this should be merged

I messed up the format of rc version tags, resulting in rc.1 being considered a later version that rc.2.

How this works

The release tagging pattern that includes a combination of geth and libevm semver triplets (e.g. 1.13.14-0.1.0) doesn't work well with extra identifiers like rc because more pre-release identifiers (those after -) take higher precedence if all those before them match. We therefore have to use a release suffix ("release" > "rc" in ASCII).

This all became too much to expect to be done manually so I chucked it in code instead.

How this was tested

Unit test demonstrates expectation of version ordering.

ARR4N added 2 commits December 2, 2024 11:00
The pre-release portion of semver is everything after the `[patch]-` hyphen, with every part being dot-separated. This causes `0.1.0-rc.1` to be considered higher than `0.1.0.rc-2`, which used the corrected format. In the future we SHOULD actually use `.rc.[numeric]` to properly order release candidates numerically by their final part (mea culpa).
@ARR4N ARR4N requested review from a team, darioush, ceyonur and michaelkaplan13 and removed request for a team December 3, 2024 12:45
@ARR4N ARR4N enabled auto-merge (squash) December 3, 2024 12:49
@ARR4N ARR4N merged commit 25e5ca3 into main Dec 3, 2024
3 checks passed
@ARR4N ARR4N deleted the arr4n/retract-0.1.0-rc.1 branch December 3, 2024 13:39
ARR4N added a commit that referenced this pull request Feb 14, 2025
## 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
ARR4N added a commit that referenced this pull request Feb 17, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants