From a1bdd431bf178324d2b3a02be69a53a9b9eeaf48 Mon Sep 17 00:00:00 2001 From: Tyler Hobbs Date: Tue, 24 Sep 2013 13:05:38 -0500 Subject: [PATCH] Update changelog, bump version to 1.0.0-beta4 --- CHANGELOG.rst | 18 ++++++++++++++++++ cassandra/__init__.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 144e5da0..3be2f4ae 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,21 @@ +1.0.0-beta4 +=========== +Sep 24, 2013 + +Features +-------- +* Handle new blob syntax in Cassandra 2.0 by accepting bytearray + objects for blob values +* Add cql_version kwarg to Cluster.__init__ + +Bug Fixes +--------- +* Fix KeyError when building token map with NetworkTopologyStrategy + keyspaces (this prevented a Cluster from successfully connecting + at all). +* Don't lose default consitency level from parent PreparedStatement + when creating BoundStatements + 1.0.0-beta3 =========== Sep 20, 2013 diff --git a/cassandra/__init__.py b/cassandra/__init__.py index c58f8f12..052751d6 100644 --- a/cassandra/__init__.py +++ b/cassandra/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = (1, 0, '0-beta3+') +__version_info__ = (1, 0, '0-beta4') __version__ = '.'.join(map(str, __version_info__))