aboutsummaryrefslogtreecommitdiff
path: root/RELEASING.md
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2018-09-25 12:10:07 -0700
committerEric Anderson <ejona@google.com>2018-09-25 12:32:10 -0700
commit69bb8a37f85fa07be418704ffb25573c133c0a4f (patch)
tree651e981ac6045f5a9b0fdaed7e193a68d590e2fc /RELEASING.md
parent32bb5ba156c78c72c3e0702ef3e15f33869407bd (diff)
downloadgrpc-grpc-java-69bb8a37f85fa07be418704ffb25573c133c0a4f.tar.gz
RELEASING.md: Add missing TestDeprecatedService replacements
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"
```