feat: reorder version scheme to RELEASE.BETA.ALPHA.BUILD with full automation - #54
Merged
Merged
Conversation
…tomation - Rename MAJOR→RELEASE; reorder digits: RELEASE.BETA.ALPHA.BUILD - Add ALPHA=0 reset to beta bump case - Add main case: RELEASE+1, reset BETA/ALPHA/BUILD to 0 - Remove main from bump exclusion (uat still excluded) - Add Tag release step on main: git tag release/X.0.0.0 - Reset package.json version to 0.0.1 / 0.0.1.0 (no prod release yet) - Update branch-manager.agent.md version table to new scheme
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
Fixes the versioning digit ordering so higher digits represent higher release maturity.
Old scheme (wrong)
MAJOR.ALPHA.BETA.BUILD— alpha appeared more significant than betaNew scheme (correct)
RELEASE.BETA.ALPHA.BUILD— digit significance matches release maturityChanges
ci.yml: Renamed vars MAJOR→RELEASE; reordered IFS parse toRELEASE BETA ALPHA BUILD; addedALPHA=0reset in beta case; addedmaincase that bumps RELEASE and resets all others; removedmainfrom bump/commit exclusion (uat still excluded); addedTag releasestep that creates and pushesrelease/X.0.0.0tag on main mergespackage.json: Reset version to0.0.1/0.0.1.0(RELEASE=0 until first production release).github/agents/branch-manager.agent.md: Updated version format table and CI/CD per-branch table to reflect new schemeTest results
115/115 tests pass ✅