From 21c888ccf555d6cbf40927def27e0f25dc4491e2 Mon Sep 17 00:00:00 2001 From: Greg Turnquist Date: Thu, 5 Sep 2019 10:31:04 -0500 Subject: [PATCH] #1070 - Tweak release script. --- ci/create-release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/create-release.sh b/ci/create-release.sh index fd5629d1..948eace2 100755 --- a/ci/create-release.sh +++ b/ci/create-release.sh @@ -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 "#$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 "#$ISSUE - Continue development on $SNAPSHOT."