From e613a230c83893413dadfb7ae8387def1e249caa Mon Sep 17 00:00:00 2001 From: Greg Turnquist Date: Tue, 5 Mar 2019 10:12:33 -0600 Subject: [PATCH] #853 - Polishing. --- ci/create-release.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/create-release.sh b/ci/create-release.sh index d1d000e6..fd5629d1 100755 --- a/ci/create-release.sh +++ b/ci/create-release.sh @@ -9,14 +9,14 @@ 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 v$RELEASE." +git commit --message "$ISSUE - Releasing Spring HATEOAS $RELEASE." # Tag the release -git tag -s v$RELEASE -m "v$RELEASE" +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 v$SNAPSHOT." +git commit --message "$ISSUE - Continue development on $SNAPSHOT."