3.4 release ver and final changelog

This commit is contained in:
Adam Holmberg
2016-05-23 16:14:46 -05:00
parent 1afa1f4b2f
commit feab7e7059
2 changed files with 3 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
3.4.0
=====
May 24, 2016
Features
--------
@@ -26,6 +27,7 @@ Bug Fixes
* Don't wait for schema agreement on ignored nodes (PYTHON-531)
* Reprepare on_up with many clients causes node overload (PYTHON-556)
* None inserted into host map when control connection node is decommissioned (PYTHON-548)
* weakref.ref does not accept keyword arguments (github #585)
3.3.0
=====

View File

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