From c3ff4384a199130a9f3f3011abd02357edfd5da6 Mon Sep 17 00:00:00 2001 From: Adam Holmberg Date: Wed, 19 Aug 2015 13:45:14 -0500 Subject: [PATCH] Normalize post version string --- README-dev.rst | 6 +++--- cassandra/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README-dev.rst b/README-dev.rst index 697b83f1..aa784ac4 100644 --- a/README-dev.rst +++ b/README-dev.rst @@ -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 diff --git a/cassandra/__init__.py b/cassandra/__init__.py index 4bec0e8a..1365b1d8 100644 --- a/cassandra/__init__.py +++ b/cassandra/__init__.py @@ -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__))