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 @@ -22,7 +22,7 @@ def emit(self, record):
22
22
23
23
logging .getLogger ('cassandra' ).addHandler (NullHandler ())
24
24
25
- __version_info__ = (3 , 28 , 0b1 )
25
+ __version_info__ = (3 , 28 , 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