Initial basic README for cli-utils release

This commit is contained in:
Sean R. Sullivan 2020-05-06 12:52:53 -07:00
parent e8ac49de72
commit 72210abfce
1 changed files with 18 additions and 0 deletions

18
release/README.md Normal file
View File

@ -0,0 +1,18 @@
# Releasing
Currently (2020/05/06), we are only releasing minor versions of
the cli-utils. We will update these notes, when we begin
updating major/minor/patch versions.
To cut a new cli-utils release perform the following:
- Fetch the latest master changes to a clean branch
- (Assuming remote fork is named `upstream`)
- `git checkout -b release`
- `git fetch upstream`
- `git reset --hard upstream/master`
- Run `git tag` to determine the latest tag
- Create/Push new tag for release
- (Assuming updating minor version)
- `git tag v0.MINOR.0`
- `git push upstream v0.MINOR.0`