Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 367 Bytes

RELEASE.md

File metadata and controls

21 lines (11 loc) · 367 Bytes

To release a new version of qtawesome on PyPI:

  • Update Changelog

  • Update _version.py (set release version, remove 'dev')

  • git add and git commit

  • python setup.py sdist upload

  • python setup.py bdist_wheel upload

  • git tag -a vX.X.X -m 'comment'

  • Update _version.py (add 'dev0' and increment minor)

  • git add and git commit

  • git push

  • git push --tags