aboutsummaryrefslogtreecommitdiff
path: root/RELEASING.md
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2016-07-01 11:59:21 -0700
committerEric Anderson <ejona@google.com>2016-07-07 16:11:36 -0700
commit7b26a3249c2931e5a1a3ddfe170b036590f7d2ce (patch)
tree72b4f3c88cc6e2f732ce8e200b4421865ec72465 /RELEASING.md
parent554287a0cd934e12879c9b4a9ab5ebf6153157a9 (diff)
downloadgrpc-grpc-java-7b26a3249c2931e5a1a3ddfe170b036590f7d2ce.tar.gz
docs: Add gradle build to steps in RELEASING
Diffstat (limited to 'RELEASING.md')
-rw-r--r--RELEASING.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/RELEASING.md b/RELEASING.md
index 3393f4523..12df20b3c 100644
--- a/RELEASING.md
+++ b/RELEASING.md
@@ -78,6 +78,7 @@ would be used to create all `v0.7` tags (e.g. `v0.7.0`, `v0.7.1`).
$ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_GRPC_VERSION\)/'$MAJOR.$((MINOR+1)).0'\1/' \
build.gradle android-interop-testing/app/build.gradle \
examples/android/app/build.gradle
+ $ ./gradlew build
$ git commit -a -m "Start $MAJOR.$((MINOR+1)).0 development cycle"
```
3. Go through PR review and push the master branch to GitHub:
@@ -96,6 +97,7 @@ would be used to create all `v0.7` tags (e.g. `v0.7.0`, `v0.7.1`).
$ sed -i 's/-SNAPSHOT\(.*CURRENT_GRPC_VERSION\)/\1/' \
build.gradle android-interop-testing/app/build.gradle \
examples/android/app/build.gradle
+ $ ./gradlew build
$ git commit -a -m "Bump version to $MAJOR.$MINOR.$PATCH"
$ git tag -a v$MAJOR.$MINOR.$PATCH -m "Version $MAJOR.$MINOR.$PATCH"
```
@@ -107,6 +109,7 @@ would be used to create all `v0.7` tags (e.g. `v0.7.0`, `v0.7.1`).
$ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_GRPC_VERSION\)/'$MAJOR.$MINOR.$((PATCH+1))-SNAPSHOT'\1/' \
build.gradle android-interop-testing/app/build.gradle \
examples/android/app/build.gradle
+ $ ./gradlew build
$ git commit -a -m "Bump version to $MAJOR.$MINOR.$((PATCH+1))-SNAPSHOT"
```
6. Go through PR review and push the release tag and updated release branch to