Merge pull request #5712 from hickeyma/upd-rel-chcklst-ver-upd

Update release checklist with bumping release version
pull/5725/head
Martin Hickey 6 years ago committed by GitHub
commit e58dab9435
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -147,6 +147,24 @@ git add .
git commit -m "bump version to $RELEASE_CANDIDATE_NAME" git commit -m "bump version to $RELEASE_CANDIDATE_NAME"
``` ```
This will update it for the $RELEASE_BRANCH_NAME only. You will also need to pull
this change into the master branch for when the next release is being created.
```shell
# get the last commit id i.e. commit to bump the version
git log --format="%H" -n 1
# create new branch off master
git checkout master
git checkout -b bump-version-<release_version>
# cherry pick the commit using id from first command
git cherry-pick -x <commit-id>
# commit the change
git push origin bump-version-<release-version>
```
## 3. Commit and Push the Release Branch ## 3. Commit and Push the Release Branch
In order for others to start testing, we can now push the release branch In order for others to start testing, we can now push the release branch

Loading…
Cancel
Save