GH-1394 - Tweak release script to use GH-dash-syntax.

This commit is contained in:
Oliver Drotbohm
2020-11-10 16:06:06 +01:00
parent 18b1ce953e
commit 27df55276e

View File

@@ -9,7 +9,7 @@ SNAPSHOT=$3
# Bump up the version in pom.xml to the desired version and commit the change
./mvnw versions:set -DnewVersion=$RELEASE -DgenerateBackupPoms=false
git add .
git commit --message "#$ISSUE - Releasing Spring HATEOAS $RELEASE."
git commit --message "GH-$ISSUE - Releasing Spring HATEOAS $RELEASE."
# Tag the release
git tag -s $RELEASE -m "$RELEASE"
@@ -17,6 +17,6 @@ git tag -s $RELEASE -m "$RELEASE"
# Bump up the version in pom.xml to the next snapshot
./mvnw versions:set -DnewVersion=$SNAPSHOT -DgenerateBackupPoms=false
git add .
git commit --message "#$ISSUE - Continue development on $SNAPSHOT."
git commit --message "GH-$ISSUE - Continue development on $SNAPSHOT."