chore: add changelog generator

This commit is contained in:
jo 2022-07-11 12:39:56 +02:00 committed by Kyle Robbertze
parent bdc2e92454
commit e048560910
6 changed files with 84 additions and 0 deletions

View file

@ -152,6 +152,15 @@ git show --quiet
git tag -a -m "$VERSION" "$VERSION"
```
Generate the changelog for the newly tagged version:
```bash
make changelog
git add .
git commit -m "chore: generate changelog for $VERSION"
```
Push the tag upstream to finalize the release process:
```bash