add script to get change log

This commit is contained in:
Pedro Lopez
2021-11-24 10:07:27 -04:00
parent 8a1f6f0648
commit 55247576da

4
tools/changelog.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/sh
LAST_TAG=$(git describe --tags --abbrev=0)
git log --pretty="%h - %s" "$LAST_TAG"..HEAD