Change release docs to use CI when bumping the version (#10856)

This commit is contained in:
sakridge
2020-06-30 12:58:46 -07:00
committed by GitHub
parent 1ffad2d051
commit 3f287b3328

View File

@ -123,11 +123,12 @@ Alternatively use the Github UI.
``` ```
1. Push all the changed Cargo.toml and Cargo.lock files to the **release branch** with something like: 1. Push all the changed Cargo.toml and Cargo.lock files to the **release branch** with something like:
``` ```
git co -b version_update git co -b version_update origin/vX.Y
git ls-files -m | xargs git add git add -u
git commit -m 'Bump version to X.Y.Z+1' git commit -m 'Bump version to X.Y.Z+1'
git push -u origin version_update git push -u <user-remote> version_update
``` ```
1. Open a PR against origin/vX.Y and then merge the PR after passing CI.
### Prepare for the next release ### Prepare for the next release
1. Go to [GitHub Releases](https://github.com/solana-labs/solana/releases) and create a new draft release for `X.Y.Z+1` with empty release nodes. This allows people to incrementally add new release notes until it's time for the next release 1. Go to [GitHub Releases](https://github.com/solana-labs/solana/releases) and create a new draft release for `X.Y.Z+1` with empty release nodes. This allows people to incrementally add new release notes until it's time for the next release