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
fix: prerelease version increment should not bump base version
The create-tag workflow was always applying the bump type to the base
version, even when already on a prerelease channel. This caused
0.11.0-next.1 + minor + next to produce 0.12.0-next.1 instead of
0.11.0-next.2.
Fixed bump_version logic to handle three flows:
- Same prerelease channel: keep base, increment counter
- Promoting prerelease to stable: use base as-is
- Stable to new prerelease or stable bump: apply bump type
Also reverts manifests from 0.12.0-next.1 back to 0.11.0-next.1.
0 commit comments