Skip to content

Commit f3812e8

Browse files
committed
Release 3.29.5: changelog, version and documentation
1 parent 2f271be commit f3812e8

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
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.5
2+
======
3+
November 5, 2025
4+
5+
Bug Fixes
6+
---------
7+
* Update TokenAwarePolicy.make_query_plan to schedule to replicas first (#548)
8+
* Drop _tablets_routing_v1 flag from token-aware policy (#547)
9+
* Fix dc aware and rack aware policies initialization (#546)
10+
* Fix Cluster.metadata_request_timeout and default it from control_connection_timeout (#539)
11+
12+
Others
13+
------
14+
* Drop python 3.9 support (#564)
15+
116
3.29.4
217
======
318
August 16, 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, 4)
26+
__version_info__ = (3, 29, 5)
2727
__version__ = '.'.join(map(str, __version_info__))
2828

2929

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.4".
29+
It should print something like "3.29.5".
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.4. You can
211+
The libev extension can now be built for Windows as of Python driver version 3.29.5. 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)