3.2.2 patch release

This commit is contained in:
Adam Holmberg
2016-04-19 10:05:25 -05:00
parent e39c62a673
commit 000d239e51
2 changed files with 8 additions and 2 deletions

View File

@@ -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
=====

View File

@@ -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__))