Feature Request
Description
Angular Commit Parser doesn't work with BitBucket multi-line PR commit messages.
BitBucket by default generates commit messages when a pull request merged to master that look like this:
Merged in feat/my-awasome-stuff (pull request #10)
feat: Implemented searching gizmos by keyword
More description
BitBucket Cloud doesn't allow to customize merge message template.
Angular commit parser uses re.match() which does not match tags on the second line. Using re.search() matches tags on the second line.
Use cases
This will allow to use python-semantic-release with BitBucket cloud.
Possible implementation
Option 1: replace re.match() with re.search() in AngularCommitParser.
Option 2: have a separate parser option to match tags after the first line.
Alternative solutions
n/a
Feature Request
Description
Angular Commit Parser doesn't work with BitBucket multi-line PR commit messages.
BitBucket by default generates commit messages when a pull request merged to master that look like this:
BitBucket Cloud doesn't allow to customize merge message template.
Angular commit parser uses
re.match()which does not match tags on the second line. Usingre.search()matches tags on the second line.Use cases
This will allow to use
python-semantic-releasewith BitBucket cloud.Possible implementation
Option 1: replace
re.match()withre.search()inAngularCommitParser.Option 2: have a separate parser option to match tags after the first line.
Alternative solutions
n/a