I'm trying to generate changelog to a project (repo in bitbucket.org), but I can't find an easy solution. We are using this pattern
(<type>(<scope>): <subject>)
to fill the commit messages, and tags to version (0.1, 0.2, 0.3).
Is there anything out-of-the-box (some script, npm package, etc...) or the best thing I can do is write some custom script using git log and parse the data (commit messages, etc...)?
I know there is an github-changelog-creator, but I can't use as long as this repo is in a bitbucket repo.