Skip to content

Commit b2af730

Browse files
absurdfarcedkropachev
authored andcommitted
Release 3.28.0: changelog & version
1 parent 6b46906 commit b2af730

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
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+
123
3.27.0
224
======
325
May 1, 2023

cassandra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def emit(self, record):
2323

2424
logging.getLogger('cassandra').addHandler(NullHandler())
2525

26-
__version_info__ = (3, 28, 0b1)
26+
__version_info__ = (3, 28, 0)
2727
__version__ = '.'.join(map(str, __version_info__))
2828

2929

0 commit comments

Comments
 (0)