pylast/RELEASING.md
2017-02-13 20:42:46 +02:00

1 KiB

Release Checklist

git checkout master
edit pylast/__init__.py setup.py
git add pylast/__init__.py setup.py
git commit -m "Release 1.8.0"
  • Tag the last commit with the version number:
git tag -a 1.8.0 -m "Release 1.8.0"
  • Create a distribution and release on PyPI:
python setup.py sdist --format=gztar
twine upload dist/pylast-1.8.0.tar.gz
  • Check installation: pip install -U pylast
  • Push: git push
  • Push tags: git push --tags
  • Create new GitHub release: https://github.com/pylast/pylast/releases/new
    • Tag: Pick existing tag "1.8.0"
    • Title: "Release 1.8.0"
  • Update develop branch from master:
git checkout develop
git merge master --ff-only
git push