Compare commits

..

2 Commits

Author SHA1 Message Date
c3523ac34f
Improve release notes generator
Old tag checked from before new tag instead of before HEAD
2023-06-20 04:31:50 -04:00
16c8d529b1
Add release notes template generator script 2023-06-20 04:28:26 -04:00
2 changed files with 10 additions and 0 deletions

View File

@ -1,2 +1,3 @@
.gitea/
README.md
release-notes.sh

9
release-notes.sh Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
current="$(git describe --abbrev=0)"
last="$(git describe $current~ --abbrev=0)"
cat << EOF
Changes:
-
**Full Changelog:** [\`$current...$last\`](https://gitea.protogen.io/nullbite/fabric-lite/compare/$current...$last)
EOF