3.4.1 changelog and version

This commit is contained in:
Adam Holmberg
2016-05-26 13:53:13 -05:00
parent 37698a294c
commit 01a611a753
2 changed files with 10 additions and 1 deletions

View File

@@ -1,3 +1,12 @@
3.4.1
=====
May 26, 2016
Bug Fixes
--------
* Gevent connection closes on IO timeout (PYTHON-573)
* "dictionary changed size during iteration" with Python 3 (PYTHON-572)
3.4.0 3.4.0
===== =====
May 24, 2016 May 24, 2016

View File

@@ -22,7 +22,7 @@ class NullHandler(logging.Handler):
logging.getLogger('cassandra').addHandler(NullHandler()) logging.getLogger('cassandra').addHandler(NullHandler())
__version_info__ = (3, 4, 0, 'post0') __version_info__ = (3, 4, 1)
__version__ = '.'.join(map(str, __version_info__)) __version__ = '.'.join(map(str, __version_info__))