Release 0.2.4 preparations (#43)

This commit is contained in:
Teemu R
2017-03-25 23:04:32 +01:00
committed by GitHub
parent d253b55d41
commit b1cc0fd3f6
4 changed files with 132 additions and 16 deletions

22
HOWTO_RELEASE Normal file
View File

@@ -0,0 +1,22 @@
# Preparing the changelog
Looks like gitchangelog is not as nice as thought before,
however, you can generate the changelog by doing this:
$ gitchangelog 0.x.y..HEAD
and manually placing the output to CHANGELOG and fixing
the newlines between commit messages, and cleaning up the
unnecessary entries, and finally commiting the file.
After that prepare a pull request containing the changed,
release-related files (CHANGELOG, setup.py, README, ..).
# After release merge is done
$ git tag -a v0.x.y -m "0.x.y"
$ git push --tags
# Pushing to pypi
$ python setup.py sdist bdist_wheel upload