diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1375a51a..e63443a0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,10 +1,13 @@ 2.1.0 ===== +August 7, 2014 Bug Fixes --------- * Correctly serialize and deserialize null values in tuples and user-defined types (PYTHON-110) +* Include additional header and lib dirs, allowing libevwrapper to build + against Homebrew and Mac Ports installs of libev (PYTHON-112 and 804dea3) 2.1.0c1 ======= @@ -78,6 +81,7 @@ Bug Fixes * Don't attempt to reconnect to hosts that should be ignored (according to the load balancing policy) when a notification is received that the host is down. +* Add CAS WriteType, avoiding KeyError on CAS write timeout (PYTHON-91) 2.0.2 ===== diff --git a/cassandra/__init__.py b/cassandra/__init__.py index 7281121f..701435f7 100644 --- a/cassandra/__init__.py +++ b/cassandra/__init__.py @@ -23,7 +23,7 @@ class NullHandler(logging.Handler): logging.getLogger('cassandra').addHandler(NullHandler()) -__version_info__ = (2, 1, '0c1', 'post') +__version_info__ = (2, 1, 0) __version__ = '.'.join(map(str, __version_info__)) diff --git a/debian/changelog b/debian/changelog index 1568c12f..f3721f9e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +python-cassandra-driver (2.1.0) unstable; urgency=low + + * Release 2.1.0 + + -- Adam Holmberg Thu, 07 Aug 2014 19:01:17 +0000 + python-cassandra-driver (2.0.2-2) unstable; urgency=low * Fixed debian/patches