Normalize post version string

This commit is contained in:
Adam Holmberg
2015-08-19 13:45:14 -05:00
parent e7a8e6804c
commit c3ff4384a1
2 changed files with 4 additions and 4 deletions

View File

@@ -17,10 +17,10 @@ Releasing
python setup.py sdist upload
* Update the docs (see below)
* Append a 'post' string to the version tuple in ``cassandra/__init__.py``
so that it looks like ``(x, y, z, 'post')``
* Append a 'postN' string to the version tuple in ``cassandra/__init__.py``
so that it looks like ``(x, y, z, 'postN')``
* After a beta or rc release, this should look like ``(2, 1, '0b1', 'post')``
* After a beta or rc release, this should look like ``(2, 1, '0b1', 'post0')``
* Commit and push
* Update 'cassandra-test' branch to reflect new release

View File

@@ -23,7 +23,7 @@ class NullHandler(logging.Handler):
logging.getLogger('cassandra').addHandler(NullHandler())
__version_info__ = (2, 6, 0, 'post')
__version_info__ = (2, 6, 0, 'post0')
__version__ = '.'.join(map(str, __version_info__))