Skip to content
This repository was archived by the owner on Dec 10, 2019. It is now read-only.

Commit b4368ce

Browse files
author
Hector Castro
committed
Merge tag '0.1.0' into develop
0.1.0
2 parents 9db2a12 + bd28bc6 commit b4368ce

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

CHANGELOG.rst

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
0.1.0
2+
-----
3+
4+
- Initial release.

README.rst

+27
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,30 @@ The test suite execution process is managed by ``tox``:
3838
.. code:: bash
3939
4040
$ tox
41+
42+
43+
Releases
44+
--------
45+
46+
Releases are automatically published to PyPI through Travis CI when commits are tagged. The following ``git flow`` commands lead to a tagged commit that can be pushed to GitHub:
47+
48+
49+
.. code:: bash
50+
51+
$ git flow release start X.Y.Z
52+
$ vim CHANGELOG.rst
53+
$ vim setup.py
54+
$ git commit -m "X.Y.Z"
55+
$ git flow release publish X.Y.Z
56+
$ git flow release finish X.Y.Z
57+
58+
59+
After you've completed the ``git flow`` steps above, you'll need to push the changes from your local repository to the GitHub repository:
60+
61+
.. code:: bash
62+
63+
$ git checkout develop
64+
$ git push origin develop
65+
$ git checkout master
66+
$ git push origin master
67+
$ git push --tags

0 commit comments

Comments
 (0)