feat: change minor pattern to support optional conventional commit scopes#188
Merged
PaulHatch merged 4 commits intoPaulHatch:masterfrom Jan 24, 2026
Merged
Conversation
…opes The Conventional Commits spec allows optional scopes to be present after the change type, e.g. `feat(scope):`. The current minor pattern will only bump the minor version number if the pattern exactly matches `feat:`. This change is backwards compatible and adds support for these scopes.
Owner
|
Thanks @BodrickLight, this is now published in v6.0.1. |
bojanrajkovic
added a commit
to bojanrajkovic/unquote
that referenced
this pull request
Feb 9, 2026
## Summary - Removes custom `major_pattern` and `minor_pattern` overrides from all three workflows using `PaulHatch/semantic-version` - v6.0.1 (PaulHatch/semantic-version#188) fixed the default patterns to support optional conventional commit scopes natively - The new default `major_pattern` also improves detection by matching `BREAKING CHANGE:` in commit bodies, not just `type!:` 🤖 Generated with [Claude Code](https://claude.com/claude-code) 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.
The Conventional Commits spec allows optional scopes to be present after the change type, e.g.
feat(scope):. The current minor pattern will only bump the minor version number if the pattern exactly matchesfeat:. This change adds support for these optional scopes.