File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 113.15.0
22======
3+ August 29, 2018
34
45Features
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
1416Other
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
3334Other
3435-----
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def emit(self, record):
2222
2323logging .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
You can’t perform that action at this time.
0 commit comments