Release 2.0.0b1

This commit is contained in:
Tyler Hobbs
2014-05-06 16:55:44 -05:00
parent 9fb525ec2e
commit c6eac505a4
3 changed files with 4 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
2.0.0b1
=======
In progress
May 6, 2014
Upgrading from 1.x
------------------

View File

@@ -6,7 +6,7 @@ DataStax Python Driver for Apache Cassandra
A Python client driver for Apache Cassandra. This driver works exclusively
with the Cassandra Query Language v3 (CQL3) and Cassandra's native
protocol. As such, only Cassandra 1.2+ is supported.
protocol.
Installation
------------
@@ -50,12 +50,11 @@ Features to be Added
--------------------
* C extension for encoding/decoding messages
* Twisted support
* Python 3 support
* IPv6 Support
License
-------
Copyright 2013, DataStax
Copyright 2013, 2014 DataStax
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

View File

@@ -23,7 +23,7 @@ class NullHandler(logging.Handler):
logging.getLogger('cassandra').addHandler(NullHandler())
__version_info__ = (2, 0, 0, 'dev')
__version_info__ = (2, 0, '0b1')
__version__ = '.'.join(map(str, __version_info__))