Skip to content

Commit 27a1770

Browse files
authored
Release 3.29.3: changelog, version and documentation (#1259)
1 parent dd2343d commit 27a1770

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
3.29.3
2+
======
3+
October 20, 2025
4+
5+
Features
6+
--------
7+
* Upgraded cython to 3.0.x (PR 1221 & PYTHON-1390)
8+
* Add support for DSE 6.9.x and HCD releases to CI (PYTHON-1402)
9+
* Add execute_concurrent_async and expose execute_concurrent_* in Session (PR 1229)
10+
11+
Bug Fixes
12+
---------
13+
* Update geomet to align with requirements.txt (PR 1236)
14+
* Connection failure to SNI endpoint when first host is unavailable (PYTHON-1419)
15+
* Maintain compatibility with CPython 3.13 (PR 1242)
16+
17+
Others
18+
------
19+
* Remove duplicated condition in primary key check (PR 1240)
20+
* Remove Python 3.8 which reached EOL on Oct 2024, update cryptography lib to 42 (PR 1247)
21+
* Remove obsolete urllib2 from ez_setup.py (PR 1248)
22+
* Remove stale dependency on sure (PR 1227)
23+
* Removed 2.7 Cpython defines (PR 1252)
24+
125
3.29.2
226
======
327
September 9, 2024

cassandra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def emit(self, record):
2222

2323
logging.getLogger('cassandra').addHandler(NullHandler())
2424

25-
__version_info__ = (3, 29, 2)
25+
__version_info__ = (3, 29, 3)
2626
__version__ = '.'.join(map(str, __version_info__))
2727

2828

docs/installation.rst

Lines changed: 1 addition & 1 deletion
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
.. _installation-datastax-graph:
3232

0 commit comments

Comments
 (0)