fix: add release floor and single-workflow release strategy#45
Merged
Conversation
- Floor computed versions at 0.8.0 to skip accidental 0.7.x series - Use v-prefixed tags going forward (canonical format) - Prevent self-triggering release loop via CHANGELOG.md path-ignore - Single workflow owns GitHub Release creation (removed duplicate) - Only release on real releasable commits (fix:/feat:/BREAKING) - Document release floor intent in development.md This prepares for clean v0.8.0 baseline after 0.7.* cleanup.
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 self-triggering release loop and establishes a clean v0.8.0 baseline after the accidental 0.7.x numeric series.
Changes
RELEASE_FLOOR: 0.8.0, using the higher value. Any next release bumps to at least v0.8.0 instead of continuing 0.7.x.vX.Y.Zformat (v0.8.0, v0.8.1, etc.).paths-ignore: [CHANGELOG.md]to semantic-release so changelog-only commits don't retrigger the workflow.release.yamlpublish job. Onlysemantic-release.yamlcreates releases now.should_release=truewhen it detectsfix:,feat:, or breaking commits. No auto-bump on empty releases.docs/development.mdto document the release floor strategy.Related Issues
Testing
Workflow syntax validated. Version floor logic verified:
Next Steps
fix:orfeat:prefix + CHANGELOG.md updatev0.8.0tag and publishes to PyPI