otakup0pe / avakas

Tooling to assist with Semantic Version Manipulation and Representation
http://ohno.computer/post/144362045508/a-codified-opinion-on-semantic-versioning
MIT License
2 stars 5 forks source link

automagic changelogs #27

Open otakup0pe opened 4 years ago

otakup0pe commented 4 years ago

Similar to how the bump:foo stuff works. For each line that matches the regex ^change:\s+(?P=words.+)$ pull words into a change log item. When the autobump is made, if the right command line option is specified, prepend to the changelog with

keep a changelog is a good reference

colakong commented 4 years ago

If this is automatic, what will be the source of the list of changes? Git commit messages?

This tool seems to do that, but relies on people tagging things appropriately for different categories of updates.

otakup0pe commented 4 years ago

Yeah was going to use different tags in the commit message as hints. I had seen github-changelog-generator but it's github only. And uses the API. Want to be able to support gitlab and plain ol' git as well.