DO NOT version bump after tagging 71/4971/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 24 May 2017 16:33:33 +0000 (12:33 -0400)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Wed, 24 May 2017 16:33:35 +0000 (12:33 -0400)
The patch command should only handle tagging. We'll be using a job for
automated version bumping moving forward.

Change-Id: If43c3099961401b46fa045583c138b070dbfd1a2
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
shell/version

index 4c8f432..8e521d8 100755 (executable)
@@ -170,14 +170,7 @@ version_patch() {
     git tag -asm "$PROJECT $RELEASE_TAG release" "release/${RELEASE_TAG,,}"
     find . -name pom.xml -print0 | xargs -0 grep SNAPSHOT
 
-    git checkout "${STABLE_BRANCH}"
-    # Release and then Bump so that the version.sh script creates the right patches
-    version_release "$RELEASE_TAG"
-    version_bump "$RELEASE_TAG"
-    git commit -asm "Bumping versions by x.y.(z+1) for next dev cycle"
-    find . -name pom.xml -print0 | xargs -0 grep "$RELEASE_TAG"
-
-    echo "Tagging and version bumping complete"
+    echo "Tagging complete"
 }
 
 # Only run the script if it is being called directly and not sourced.