Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
H
helm3
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
helm3
Commits
c4ac3833
Commit
c4ac3833
authored
May 10, 2019
by
Martin Hickey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update release checklist with bumping release version
Signed-off-by:
Martin Hickey
<
martin.hickey@ie.ibm.com
>
parent
6c2616a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
release_checklist.md
docs/release_checklist.md
+18
-0
No files found.
docs/release_checklist.md
View file @
c4ac3833
...
...
@@ -147,6 +147,24 @@ git add .
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 upstream bump-version-<release-version>
```
## 3. Commit and Push the Release Branch
In order for others to start testing, we can now push the release branch
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment