...
1# Releasing
2
3Currently (2020/05/06), we are only releasing minor versions of
4the cli-utils. We will update these notes, when we begin
5updating major/minor/patch versions.
6
7To cut a new cli-utils release perform the following:
8
9- Fetch the latest master changes to a clean branch
10 - (Assuming remote fork is named `upstream`)
11 - `git checkout -b release`
12 - `git fetch upstream`
13 - `git reset --hard upstream/master`
14- Run `git tag` to determine the latest tag
15- Create/Push new tag for release
16 - (Assuming updating minor version)
17 - `git tag v0.MINOR.0`
18 - `git push upstream v0.MINOR.0`
View as plain text