From ffd4b9e8c06a856f0a00779f316ca4435c80198d Mon Sep 17 00:00:00 2001 From: Andres Taylor Date: Tue, 25 May 2021 11:12:40 +0200 Subject: [PATCH] Update do_release to work in the 9.0 branch Signed-off-by: Andres Taylor --- Makefile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Makefile b/Makefile index c747c1c0d9d..9d0cc7a2ef3 100644 --- a/Makefile +++ b/Makefile @@ -287,18 +287,12 @@ else endif # Pre checks passed. Let's change the current version cd java && mvn versions:set -DnewVersion=$(RELEASE_VERSION) - echo package servenv > go/vt/servenv/version.go - echo >> go/vt/servenv/version.go - echo const versionName = \"$(RELEASE_VERSION)\" >> go/vt/servenv/version.go echo -n Pausing so relase notes can be added. Press enter to continue read line git add --all git commit -n -s -m "Release commit for $(RELEASE_VERSION)" git tag -m Version\ $(RELEASE_VERSION) v$(RELEASE_VERSION) cd java && mvn versions:set -DnewVersion=$(DEV_VERSION) - echo package servenv > go/vt/servenv/version.go - echo >> go/vt/servenv/version.go - echo const versionName = \"$(DEV_VERSION)\" >> go/vt/servenv/version.go git add --all git commit -n -s -m "Back to dev mode" echo "Release preparations successful"