Release 3.28.0: changelog & version
diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4329988..472881d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst
@@ -1,3 +1,25 @@ +3.28.0 +====== +June 5, 2023 + +Features +-------- +* Add support for vector type (PYTHON-1352) +* Cryptography module is now an optional dependency (PYTHON-1351) + +Bug Fixes +--------- +* Store IV along with encrypted text when using column-level encryption (PYTHON-1350) +* Create session-specific protocol handlers to contain session-specific CLE policies (PYTHON-1356) + +Others +------ +* Use Cython for smoke builds (PYTHON-1343) +* Don't fail when inserting UDTs with prepared queries with some missing fields (PR 1151) +* Convert print statement to function in docs (PR 1157) +* Update comment for retry policy (DOC-3278) +* Added error handling blog reference (DOC-2813) + 3.27.0 ====== May 1, 2023
diff --git a/cassandra/__init__.py b/cassandra/__init__.py index ca15e93..b048bd9 100644 --- a/cassandra/__init__.py +++ b/cassandra/__init__.py
@@ -22,7 +22,7 @@ logging.getLogger('cassandra').addHandler(NullHandler()) -__version_info__ = (3, 28, 0b1) +__version_info__ = (3, 28, 0) __version__ = '.'.join(map(str, __version_info__))