Skip to content

Commit 26191f2

Browse files
committed
Bump version and update changelog
1 parent 297207b commit 26191f2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
3.15.0
22
======
3+
August 29, 2018
34

45
Features
56
--------
@@ -10,6 +11,7 @@ Bug Fixes
1011
* Tokenmap.get_replicas returns the wrong value if token coincides with the end of the range (PYTHON-978)
1112
* Python Driver fails with "more than 255 arguments" python exception when > 255 columns specified in query response (PYTHON-893)
1213
* Hang in integration.standard.test_cluster.ClusterTests.test_set_keyspace_twice (PYTHON-998)
14+
* Asyncore reactors should use a global variable instead of a class variable for the event loop (PYTHON-697)
1315

1416
Other
1517
-----
@@ -28,7 +30,6 @@ Features
2830
* Allow filter queries with fields that have an index managed outside of cqlengine (PYTHON-966)
2931
* Twisted SSL Support (PYTHON-343)
3032
* Support IS NOT NULL operator in cqlengine (PYTHON-968)
31-
* Asyncore reactors should use a global variable instead of a class variable for the event loop (PYTHON-697)
3233

3334
Other
3435
-----

cassandra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def emit(self, record):
2222

2323
logging.getLogger('cassandra').addHandler(NullHandler())
2424

25-
__version_info__ = (3, 14, 0)
25+
__version_info__ = (3, 15, 0)
2626
__version__ = '.'.join(map(str, __version_info__))
2727

2828

0 commit comments

Comments
 (0)