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 23a2215 + 2cdb75c commit 25994d1Copy full SHA for 25994d1
CHANGELOG.rst
@@ -82,6 +82,14 @@ Other
82
* Write documentation examples for DSE 2.0 features (PYTHON-732)
83
* DSE_V1 protocol should not include all of protocol v5 (PYTHON-694)
84
85
+3.20.2
86
+======
87
+November 19, 2019
88
+
89
+Bug Fixes
90
+---------
91
+* Fix import error for old python installation without SSLContext (PYTHON-1183)
92
93
3.20.1
94
======
95
November 6, 2019
cassandra/__init__.py
@@ -22,7 +22,7 @@ def emit(self, record):
22
23
logging.getLogger('cassandra').addHandler(NullHandler())
24
25
-__version_info__ = (3, 20, 0)
+__version_info__ = (3, 20, 2)
26
__version__ = '.'.join(map(str, __version_info__))
27
28
0 commit comments