Skip to content

Commit b4f4142

Browse files
committed
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.
1 parent 847ea7c commit b4f4142

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

RELEASING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Tagging the Release
9999
```bash
100100
$ git checkout v$MAJOR.$MINOR.x
101101
$ git pull upstream v$MAJOR.$MINOR.x
102-
$ git checkout -b release
102+
$ git checkout -b release-v$MAJOR.$MINOR.$PATCH
103103

104104
# Bump documented gRPC versions.
105105
# Also update protoc version to match protobuf version in gradle/libs.versions.toml.
@@ -135,7 +135,7 @@ Tagging the Release
135135

136136
```bash
137137
$ git checkout v$MAJOR.$MINOR.x
138-
$ git merge --ff-only release
138+
$ git merge --ff-only release-v$MAJOR.$MINOR.$PATCH
139139
$ git push upstream v$MAJOR.$MINOR.x
140140
$ git push upstream v$MAJOR.$MINOR.$PATCH
141141
```

0 commit comments

Comments
 (0)