Skip to content

Commit 89f1a12

Browse files
committed
Release 3.29.7: changelog, version and documentation
1 parent 592ebf7 commit 89f1a12

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
3.29.7
2+
======
3+
December 08, 2025
4+
5+
Bug Fixes
6+
---------
7+
* Make compression=None a valid case (#610)
8+
19
3.29.6
210
======
311
November 27, 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, 6)
26+
__version_info__ = (3, 29, 7)
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
@@ -27,10 +27,11 @@
2727
'3.29.4-scylla',
2828
'3.29.5-scylla',
2929
'3.29.6-scylla',
30+
'3.29.7-scylla',
3031
]
3132
BRANCHES = ['master']
3233
# Set the latest version.
33-
LATEST_VERSION = '3.29.6-scylla'
34+
LATEST_VERSION = '3.29.7-scylla'
3435
# Set which versions are not released yet.
3536
UNSTABLE_VERSIONS = ['master']
3637
# 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.6".
29+
It should print something like "3.29.7".
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.6. You can
211+
The libev extension can now be built for Windows as of Python driver version 3.29.7. 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)