clog-tool / clog-cli

Generate beautiful changelogs from your Git commit history
MIT License
851 stars 43 forks source link

Support exclamation mark after type/scope of the "conventional commits" convention. #114

Open jcornaz opened 3 years ago

jcornaz commented 3 years ago

Acording to conventional commits the following commit message is valid and should be considered a "breaking change":

refactor!: drop support for Node 6

(example taken directly from the conventional commit spec: https://www.conventionalcommits.org/en/v1.0.0/#commit-message-with--to-draw-attention-to-breaking-change)

But it looks like clog ignores the commit messages that contain a ! after the type/scope.

I realized that the readme of this project points to the angular commit convention, rather than the conventional commits specification.

But would it be possible to consider the support of "conventional commit"?