Skip to content

Commit a401409

Browse files
committed
Release 3.29.2: changelog, version and documentation
1 parent 485ce23 commit a401409

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.rst

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
3.29.3
2+
======
3+
Mart 11, 2025
4+
5+
Bug Fixes
6+
---------
7+
8+
* Fix regression after #443 when _is_gevent_monkey_patched was broken (#452)
9+
10+
Others
11+
------
12+
* Fix sync_table to raise error on adding partition key (#433)
13+
* Upgrade CICD Runners to ubuntu-24.04 (#451)
14+
* Make connection tests to fail when failed to import connection class from EVENT_LOOP_MANAGER
15+
116
3.29.2
217
======
318
September 9, 2024

cassandra/__init__.py

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

2929

docs/installation.rst

+2-2
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.2".
29+
It should print something like "3.29.3".
3030

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

206206
$ brew install libev
207207

208-
The libev extension can now be built for Windows as of Python driver version 3.29.2. You can
208+
The libev extension can now be built for Windows as of Python driver version 3.29.3. You can
209209
install libev using any Windows package manager. For example, to install using `vcpkg <https://vcpkg.io>`_:
210210

211211
$ vcpkg install libev

0 commit comments

Comments
 (0)