Skip to content

Latest commit

 

History

History
27 lines (14 loc) · 463 Bytes

RELEASE.md

File metadata and controls

27 lines (14 loc) · 463 Bytes

To release a new version of qtawesome on PyPI:

  • Close Github milestone

  • git fetch upstream && git merge upstream/master

  • git clean -xfdi

  • 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