Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.92 KB

RELEASE.md

File metadata and controls

50 lines (33 loc) · 1.92 KB

Release Checklist

Include CLI Client

  • If Anaconda-Client changes then release with other changes

Minor Release

Release process (deprecated?)

To release a new version of anaconda-client:

1.) Ensure you have the latest version from upstream and update your fork

git pull upstream develop
git push origin develop

2.) Update CHANGELOG.md, using loghub

loghub Anaconda-Platform/anaconda-client --since-tag <latest-version-tag-used> -u <username> -ilr "reso:completed" -ilg "type:feature" "New Features" -ilg "type:enhancements" "Code Enhancements" -ilg "type:bug" "Bugs fixed"

3.) Commit changes for changelog update

git add .
git commit -m "Update changelog for release X.X.X"

4.) Add release tag

git tag -a X.X.X -m 'Release version'

5.) Push changes

git push upstream develop
git push origin develop
git push --tags

6.) Inform build team that new release is available