diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e0ba17fd..a3618ca1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,14 @@ +3.2.2 +===== +April 19, 2016 + +* Fix counter save-after-no-update (PYTHON-547) + 3.2.1 ===== April 13, 2016 -* Introduced an update to allow deserializer compilation with recently released Cython 0.24 +* Introduced an update to allow deserializer compilation with recently released Cython 0.24 (PYTHON-542) 3.2.0 ===== diff --git a/cassandra/__init__.py b/cassandra/__init__.py index ac4b6fb5..c93058b0 100644 --- a/cassandra/__init__.py +++ b/cassandra/__init__.py @@ -22,7 +22,7 @@ class NullHandler(logging.Handler): logging.getLogger('cassandra').addHandler(NullHandler()) -__version_info__ = (3, 2, 1) +__version_info__ = (3, 2, 2) __version__ = '.'.join(map(str, __version_info__))