Skip to content

Commit e3400a1

Browse files
committed
Release 3.28.0: changelog & version
1 parent 2db3728 commit e3400a1

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
@@ -22,7 +22,7 @@ def emit(self, record):
2222

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

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

2828

0 commit comments

Comments
 (0)