Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 683 Bytes

RELEASE.md

File metadata and controls

23 lines (18 loc) · 683 Bytes

Release

Steps for building a release package:

  1. Edit pyproject.toml and remove "-dev" from the version key.
  2. Activate virtualenv.
  3. make distclean
  4. make install-dev
  5. jsonlogalert --version
  6. make extras
  7. Commit changes with message "Version bump."
  8. Push repo.
  9. Tag commit with "vVERSION".
  10. Push tag.
  11. Check Releases after build release action is complete.

Then repeat the steps above with "-dev" appended to the version and without tagging the commit.

Update requirements

rm requirements*.txt
make requirements
make install-dev