Automatically init tag message with last changelog.

This commit is contained in:
hackademix 2020-10-05 00:20:49 +02:00
parent ac7db1d15e
commit fd51f8ffc1
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ strip_rc_ver() {
VER=$(grep '"version":' "$MANIFEST_IN" | sed -re 's/.*": "(.*?)".*/\1/')
if [ "$1" == "tag" ]; then
echo "Tagging at $VER"
git tag -a "$VER"
git tag -a "$VER" -e -m"$(gitcl 2>/dev/null)"
git push origin "$VER"
exit 0
fi