From 3f287b332866d5865c2482cd3d7ed83838bef53a Mon Sep 17 00:00:00 2001 From: sakridge Date: Tue, 30 Jun 2020 12:58:46 -0700 Subject: [PATCH] Change release docs to use CI when bumping the version (#10856) --- RELEASE.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index b31db11f8..278bacd2e 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -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: ``` - git co -b version_update - git ls-files -m | xargs git add + git co -b version_update origin/vX.Y + git add -u git commit -m 'Bump version to X.Y.Z+1' - git push -u origin version_update + git push -u version_update ``` +1. Open a PR against origin/vX.Y and then merge the PR after passing CI. ### 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