aboutsummaryrefslogtreecommitdiff
path: root/RELEASING.md
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2021-01-13 23:59:13 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2021-01-13 23:59:13 +0000
commit7e0e0c30cfa46eeb5793ba46f1a273a8081b2100 (patch)
tree71cca5090003ca0b46a97cbc43b52e94103376bd /RELEASING.md
parent9b4f1a6db99b7cb7d46320e25e32317853b500dc (diff)
parent599cbd6b784405f6a751b91d3bcc9536e4776e69 (diff)
downloadgrpc-grpc-java-7e0e0c30cfa46eeb5793ba46f1a273a8081b2100.tar.gz
Snap for 7080740 from 599cbd6b784405f6a751b91d3bcc9536e4776e69 to mainline-tethering-releaseandroid-mainline-11.0.0_r43android-mainline-11.0.0_r24android11-mainline-tethering-release
Change-Id: Ifa5b02fa99dd9e1d614f8e97c85c132d3b81d948
Diffstat (limited to 'RELEASING.md')
-rw-r--r--RELEASING.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/RELEASING.md b/RELEASING.md
index 9fee632b5..1306ee504 100644
--- a/RELEASING.md
+++ b/RELEASING.md
@@ -113,7 +113,7 @@ Tagging the Release
```bash
# Change version to remove -SNAPSHOT
$ sed -i 's/-SNAPSHOT\(.*CURRENT_GRPC_VERSION\)/\1/' "${VERSION_FILES[@]}"
- $ sed -i s/-SNAPSHOT// compiler/src/test{,Lite,Nano}/golden/TestService.java.txt
+ $ sed -i s/-SNAPSHOT// compiler/src/test{,Lite,Nano}/golden/Test{,Deprecated}Service.java.txt
$ ./gradlew build
$ git commit -a -m "Bump version to $MAJOR.$MINOR.$PATCH"
$ git tag -a v$MAJOR.$MINOR.$PATCH -m "Version $MAJOR.$MINOR.$PATCH"
@@ -125,7 +125,8 @@ Tagging the Release
# Change version to next patch and add -SNAPSHOT
$ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_GRPC_VERSION\)/'$MAJOR.$MINOR.$((PATCH+1))-SNAPSHOT'\1/' \
"${VERSION_FILES[@]}"
- $ sed -i s/$MAJOR.$MINOR.$PATCH/$MAJOR.$MINOR.$((PATCH+1))-SNAPSHOT/ compiler/src/test{,Lite,Nano}/golden/TestService.java.txt
+ $ sed -i s/$MAJOR.$MINOR.$PATCH/$MAJOR.$MINOR.$((PATCH+1))-SNAPSHOT/ \
+ compiler/src/test{,Lite,Nano}/golden/Test{,Deprecated}Service.java.txt
$ ./gradlew build
$ git commit -a -m "Bump version to $MAJOR.$MINOR.$((PATCH+1))-SNAPSHOT"
```