diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d9867fde..f88e84c9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 ===== May 24, 2016 diff --git a/cassandra/__init__.py b/cassandra/__init__.py index 56509662..81172c80 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, 4, 0, 'post0') +__version_info__ = (3, 4, 1) __version__ = '.'.join(map(str, __version_info__))