These are the steps to take to create a release of the module bonked
:
- Switch to the release branch
$ git checkout release $ git merge master --no-commit
Update the following files with the correct version.
bonked/__init__.py
CHANGELOG.rst
Add and commit the changes.
$ git commit -a -m 'Release {VERSION}' $ git tag {VERSION} -m '{VERSION}'
- Build the distributables and publish to release branch.
$ git push origin $ python setup.py sdist bdist_wheel upload