Skip to content

Latest commit

 

History

History
18 lines (17 loc) · 761 Bytes

RELEASE.md

File metadata and controls

18 lines (17 loc) · 761 Bytes

To release a new version of ate-dispatcher:

  1. git fetch upstream && git checkout upstream/main
  2. Close milestone on GitHub
  3. git clean -xfdi
  4. Update CHANGELOG.md with git-cliff (git cliff --tag X.X.X)
  5. git add -A && git commit -m "Update Changelog"
  6. Update release version in __init__.py (set release version, remove 'dev')
  7. git add -A && git commit -m "Release vX.X.X"
  8. git tag -a vX.X.X -m "Release vX.X.X"
  9. python setup.py sdist
  10. python setup.py bdist_wheel
  11. Update development version in Update Changelog (add '-dev' and increment minor version)
  12. git add -A && git commit -m "Set development version to vY.Y.Y"
  13. git push upstream main
  14. git push upstream --tags
  15. twine upload dist/*
  16. Draft new release in GitHub