File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
1
+ 3.28.0
2
+ ======
3
+ June 5, 2023
4
+
5
+ Features
6
+ --------
7
+ * Add support for vector type (PYTHON-1352)
8
+ * Cryptography module is now an optional dependency (PYTHON-1351)
9
+
10
+ Bug Fixes
11
+ ---------
12
+ * Store IV along with encrypted text when using column-level encryption (PYTHON-1350)
13
+ * Create session-specific protocol handlers to contain session-specific CLE policies (PYTHON-1356)
14
+
15
+ Others
16
+ ------
17
+ * Use Cython for smoke builds (PYTHON-1343)
18
+ * Don't fail when inserting UDTs with prepared queries with some missing fields (PR 1151)
19
+ * Convert print statement to function in docs (PR 1157)
20
+ * Update comment for retry policy (DOC-3278)
21
+ * Added error handling blog reference (DOC-2813)
22
+
1
23
3.27.0
2
24
======
3
25
May 1, 2023
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ def emit(self, record):
23
23
24
24
logging .getLogger ('cassandra' ).addHandler (NullHandler ())
25
25
26
- __version_info__ = (3 , 28 , 0b1 )
26
+ __version_info__ = (3 , 28 , 0 )
27
27
__version__ = '.' .join (map (str , __version_info__ ))
28
28
29
29
You can’t perform that action at this time.
0 commit comments