Normalize post version string
This commit is contained in:
@@ -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
|
||||
|
@@ -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__))
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user