feat: zero-padded calver with same-day suffixes#31
Merged
Conversation
When multiple pushes to main happen on the same day, the version job was skipping the build because the tag already existed. Now it deletes the stale release and rebuilds, so the latest code is always released. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Version format: 2026.03.01, 2026.03.01-02, 2026.03.01-03, etc. Each push to main gets its own unique release instead of replacing. - Zero-padded dates sort correctly for brew upgrade - Suffixed versions (-02, -03) for multiple releases per day - Separate cargo_version output strips leading zeros for semver compliance (2026.3.1, 2026.3.1-2) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes calver format from
2026.3.1to2026.03.01with-02,-03suffixes for same-day releases.Version scheme
v2026.03.012026.3.1v2026.03.01-022026.3.1-2v2026.03.01-032026.3.1-3Key changes
brew upgradecargo_versionoutput strips leading zeros for Cargo.toml semver complianceTest plan
v2026.03.01-02(sincev2026.03.01exists from earlier)brew upgrade --cask icq26apicks up the new version🤖 Generated with Claude Code