$ git push origin master
$ git push origin --tags
.. note::
The ``git flow release finish`` command will open two prompts, one
to merge the release branch into `master`, just leave that as is. The
second prompt is the tag message, please complete this to include the
release notes for this release.
. **Draft a release on GitHub**
* Go to https://github.com/duncanmmacleod/python-losc/releases/new
* Use ``v1.0.0`` as the *Tag version*
* Use 1.0.0 as the *Release title*
* Copy the tag message into the text box to serve as release notes
. **Upload the new release to pypi**
.. code-block: bash
$ rm -rf dist/*
$ python setup.py sdist
$ python2.7 bdist_wheel
$ python3.6 bdist_wheel
$ twine upload dist/losc-1.0.0.*