Skip to content

Commit 4287fdc

Browse files
committed
Minor readme and changelog tweaks
1 parent c6eac50 commit 4287fdc

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

CHANGELOG.rst

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@ driver will not hang. However, if you *do* have a reproduceable case
1010
where Cluster.shutdown() is not called and the driver hangs, please
1111
report it so that we can attempt to fix it.
1212

13+
If you're using the 2.0 driver against Cassandra 1.2, you will need
14+
to set your protocol version to 1. For example:
15+
16+
cluster = Cluster(..., protocol_version=1)
17+
1318
Features
1419
--------
1520
* Support v2 of Cassandra's native protocol, which includes the following
16-
new features:
17-
* Automatic query paging support
18-
* Protocol-level batch statements
19-
* Lightweight transactions
21+
new features: automatic query paging support, protocol-level batch statements,
22+
and lightweight transactions
2023
* Support for Python 3.3 and 3.4
2124
* Allow a default query timeout to be set per-Session
2225

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ A Python client driver for Apache Cassandra. This driver works exclusively
88
with the Cassandra Query Language v3 (CQL3) and Cassandra's native
99
protocol.
1010

11+
The driver supports Python 2.6, 2.7, 3.3, and 3.4.
12+
1113
Installation
1214
------------
1315
Installation through pip is recommended::

cassandra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def emit(self, record):
2323
logging.getLogger('cassandra').addHandler(NullHandler())
2424

2525

26-
__version_info__ = (2, 0, '0b1')
26+
__version_info__ = (2, 0, '0b1', 'post')
2727
__version__ = '.'.join(map(str, __version_info__))
2828

2929

0 commit comments

Comments
 (0)