We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83066e2 + 628a85a commit 2cdb75cCopy full SHA for 2cdb75c
CHANGELOG.rst
@@ -12,6 +12,14 @@ Bug Fixes
12
---------
13
* re-raising the CQLEngineException will fail on Python 3 (PYTHON-1166)
14
15
+3.20.2
16
+======
17
+November 19, 2019
18
+
19
+Bug Fixes
20
+---------
21
+* Fix import error for old python installation without SSLContext (PYTHON-1183)
22
23
3.20.1
24
======
25
November 6, 2019
cassandra/__init__.py
@@ -22,7 +22,7 @@ def emit(self, record):
logging.getLogger('cassandra').addHandler(NullHandler())
-__version_info__ = (3, 20, 0)
+__version_info__ = (3, 20, 2)
26
__version__ = '.'.join(map(str, __version_info__))
27
28
0 commit comments