Skip to content

Commit ba3aeaa

Browse files
committed
Release 3.29.6: changelog, version and documentation
1 parent 946c041 commit ba3aeaa

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
3.29.6
2+
======
3+
November 27, 2025
4+
5+
* Rename connection_metadata to client_routes (#608)
6+
* TokenAwarePolicy: enable shuffling by default (#478)
7+
* Add support of LWT flag for BatchStatement (#606)
8+
* Add support of CONNECTION_METADATA_CHANGE event (#601)
9+
* Add LWT support (#584)
10+
* Add support for Python 3.14 (#566)
11+
* Fix dict handling in pool and metrics (#595)
12+
* Remove serverless code (#590)
13+
* tests: drop `sure` package (#592)
14+
* compression: better handle configuration problems (#585)
15+
116
3.29.5
217
======
318
November 5, 2025

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, 29, 5)
26+
__version_info__ = (3, 29, 6)
2727
__version__ = '.'.join(map(str, __version_info__))
2828

2929

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@
2626
'3.29.3-scylla',
2727
'3.29.4-scylla',
2828
'3.29.5-scylla',
29+
'3.29.6-scylla',
2930
]
3031
BRANCHES = ['master']
3132
# Set the latest version.
32-
LATEST_VERSION = '3.29.5-scylla'
33+
LATEST_VERSION = '3.29.6-scylla'
3334
# Set which versions are not released yet.
3435
UNSTABLE_VERSIONS = ['master']
3536
# Set which versions are deprecated

docs/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To check if the installation was successful, you can run::
2626

2727
python -c 'import cassandra; print(cassandra.__version__)'
2828

29-
It should print something like "3.29.5".
29+
It should print something like "3.29.6".
3030

3131
(*Optional*) Compression Support
3232
--------------------------------
@@ -208,7 +208,7 @@ through `Homebrew <http://brew.sh/>`_. For example, on Mac OS X::
208208

209209
$ brew install libev
210210

211-
The libev extension can now be built for Windows as of Python driver version 3.29.5. You can
211+
The libev extension can now be built for Windows as of Python driver version 3.29.6. You can
212212
install libev using any Windows package manager. For example, to install using `vcpkg <https://vcpkg.io>`_:
213213

214214
$ vcpkg install libev

0 commit comments

Comments
 (0)