pylast/RELEASING.md
Hugo van Kemenade 072f0aca1a Add more detail and another step
[CI skip]
2015-09-05 10:18:21 +03:00

945 B

Release Checklist

  • Get master to the appropriate code release state. Travis CI should be running cleanly for all merges to master.
  • Update version in pylast/__init__.py and setup.py and commit:
git checkout master
edit pylast/__init__.py setup.py
git add pylast/__init__.py setup.py
git commit -m "Release 1.5.0"
  • Tag the last commit with the version number:
git tag -a 1.5.0 -m "Release 1.5.0"
  • Release on PyPI:
python setup.py register
python setup.py sdist --format=gztar upload
git checkout develop
git merge master --ff-only
git push
  • Check installation: pip install -U pylast