Skip to content

Latest commit

 

History

History
30 lines (18 loc) · 687 Bytes

RELEASE.rst

File metadata and controls

30 lines (18 loc) · 687 Bytes

Steps to Release bonked

These are the steps to take to create a release of the module bonked:

  1. Switch to the release branch
$ git checkout release
$ git merge master --no-commit
  1. Update the following files with the correct version.

    • bonked/__init__.py
    • CHANGELOG.rst
  2. Add and commit the changes.

$ git commit -a -m 'Release {VERSION}'
$ git tag {VERSION} -m '{VERSION}'
  1. Build the distributables and publish to release branch.
$ git push origin
$ python setup.py sdist bdist_wheel upload