aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2023-05-08 16:06:00 -0700
committerEric Anderson <ejona@google.com>2023-05-09 08:12:27 -0700
commitb4f4142e8df6e91f173a708e858df5215e3909d3 (patch)
treea034d0a2d0bed156d93c6213f1f62a6bfd3edec0
parent847ea7cfc9d917345af785edeaf0473806cb170e (diff)
downloadgrpc-grpc-java-b4f4142e8df6e91f173a708e858df5215e3909d3.tar.gz
RELEASING.md: Include version number in release branch name
This makes it easier to manage multiple patch releases in-flight simultaneously and improves the default PR description.
-rw-r--r--RELEASING.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/RELEASING.md b/RELEASING.md
index 9bd20035d..18a014df4 100644
--- a/RELEASING.md
+++ b/RELEASING.md
@@ -99,7 +99,7 @@ Tagging the Release
```bash
$ git checkout v$MAJOR.$MINOR.x
$ git pull upstream v$MAJOR.$MINOR.x
- $ git checkout -b release
+ $ git checkout -b release-v$MAJOR.$MINOR.$PATCH
# Bump documented gRPC versions.
# Also update protoc version to match protobuf version in gradle/libs.versions.toml.
@@ -135,7 +135,7 @@ Tagging the Release
```bash
$ git checkout v$MAJOR.$MINOR.x
- $ git merge --ff-only release
+ $ git merge --ff-only release-v$MAJOR.$MINOR.$PATCH
$ git push upstream v$MAJOR.$MINOR.x
$ git push upstream v$MAJOR.$MINOR.$PATCH
```