File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
3.15.0
2
2
======
3
+ August 29, 2018
3
4
4
5
Features
5
6
--------
@@ -10,6 +11,7 @@ Bug Fixes
10
11
* Tokenmap.get_replicas returns the wrong value if token coincides with the end of the range (PYTHON-978)
11
12
* Python Driver fails with "more than 255 arguments" python exception when > 255 columns specified in query response (PYTHON-893)
12
13
* 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)
13
15
14
16
Other
15
17
-----
@@ -28,7 +30,6 @@ Features
28
30
* Allow filter queries with fields that have an index managed outside of cqlengine (PYTHON-966)
29
31
* Twisted SSL Support (PYTHON-343)
30
32
* 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)
32
33
33
34
Other
34
35
-----
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def emit(self, record):
22
22
23
23
logging .getLogger ('cassandra' ).addHandler (NullHandler ())
24
24
25
- __version_info__ = (3 , 14 , 0 )
25
+ __version_info__ = (3 , 15 , 0 )
26
26
__version__ = '.' .join (map (str , __version_info__ ))
27
27
28
28
You can’t perform that action at this time.
0 commit comments