Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Latest commit

 

History

History
executable file
·
6 lines (6 loc) · 304 Bytes

HOW_TO_RELEASE.md

File metadata and controls

executable file
·
6 lines (6 loc) · 304 Bytes
  1. Check and update CHANGELOG.md
  2. Bump the version in setup.py
  3. Stage changes git add CHANGELOG.md setup.py
  4. Commit changes git commit -m "Release v<NEW_VERSION>"
  5. Create tags git tag -a v<NEW_VERSION> -m "Release v<NEW_VERSION>"
  6. Trigger the release git push origin master --tags