Skip to content

Commit

Permalink
Added docs for release process
Browse files Browse the repository at this point in the history
  • Loading branch information
spookylukey committed Mar 22, 2016
1 parent 2bad6bf commit aa026e2
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
Release process
---------------

* Change docs/release_notes.rst to remove " (under development)"

* Run all tests::

tox

* Update version numbers:

* ``paypal/__init__.py``
* ``setup.py``
* ``docs/conf.py``

* Commit

* Release to PyPI::

./setup.py sdist bdist_wheel register upload

* Tag and push, for example.::

git tag v0.1.6
git push
git push --tags


Post release
------------

* Bump version numbers to next version with ``-dev`` suffix, for example ``0.1.7-dev``

* Add new section to docs/release_notes.rst, with " (under development)".

* Commit

0 comments on commit aa026e2

Please sign in to comment.