Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 894 Bytes

RELEASE.md

File metadata and controls

19 lines (12 loc) · 894 Bytes

Releasing Rambo

This documents how to release Rambo. Various steps in this document may require privileged access to private systems, so this document is only targetted at Rambo core members who have the ability to cut a release.

  1. Update __version__ in rambo/__init__.py to the version you want to release.

  2. Update CHANGELOG.md to have a header with the release version and date.

  3. Commit those changes and also tag the release with the version:

     $ git tag X.Y.Z
     $ git push --tags
    
  4. Release this version on GitHub.

  5. Update version.txt to the next version and append .dev and add a new blank entry in the CHANGELOG, commit, and push.