mirror of https://github.com/grpc/grpc-java.git
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.
This commit is contained in:
parent
847ea7cfc9
commit
b4f4142e8d
|
|
@ -99,7 +99,7 @@ Tagging the Release
|
||||||
```bash
|
```bash
|
||||||
$ git checkout v$MAJOR.$MINOR.x
|
$ git checkout v$MAJOR.$MINOR.x
|
||||||
$ git pull upstream 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.
|
# Bump documented gRPC versions.
|
||||||
# Also update protoc version to match protobuf version in gradle/libs.versions.toml.
|
# Also update protoc version to match protobuf version in gradle/libs.versions.toml.
|
||||||
|
|
@ -135,7 +135,7 @@ Tagging the Release
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ git checkout v$MAJOR.$MINOR.x
|
$ 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.x
|
||||||
$ git push upstream v$MAJOR.$MINOR.$PATCH
|
$ git push upstream v$MAJOR.$MINOR.$PATCH
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue