When releasing a new version of DFTTK
git pull
to make sure you haven't missed any last-minute commits. After this point, nothing else is making it into this version.- Ensure that all tests pass locally on develop.
git push
and verify all tests pass on all CI services.- Generate a list of commits since the last version with
git --no-pager log --oneline --no-decorate 0.1^..origin/master
Replace0.1
with the tag of the last public version. - Condense the change list into something user-readable. Update and commit CHANGES.rst with the release date.``
git tag 0.2 master -m "0.2"
Replace0.2
with the new version.git show 0.2
to ensure the correct commit was taggedgit push origin master --tags
- The new version is tagged in the repository. Now the public package must be built and distributed.
rm -R dist/*
on Linux/OSX ordel dist/*
on WindowsWith the commit checked out which was tagged with the new version:
python setup.py sdist
Make sure that the script correctly detected the new version exactly and not a dirty / revised state of the repo.
Assuming a correctly configured .pypirc:
twine upload -u bocklund dist/*