Update changelog, bump version to 1.0.0-beta4

This commit is contained in:
Tyler Hobbs
2013-09-24 13:05:38 -05:00
parent bc4b794bcf
commit a1bdd431bf
2 changed files with 19 additions and 1 deletions

View File

@@ -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

View File

@@ -1,4 +1,4 @@
__version_info__ = (1, 0, '0-beta3+')
__version_info__ = (1, 0, '0-beta4')
__version__ = '.'.join(map(str, __version_info__))