Skip to content

Commit 9629c2a

Browse files
authored
Release 3.29.1: changelog & version (#1199)
1 parent dbd4ea5 commit 9629c2a

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
3.29.1
2+
======
3+
March 19, 2024
4+
5+
Bug Fixes
6+
--------
7+
* cassandra-driver for Python 3.12 Linux is compiled without libev support (PYTHON-1378)
8+
* Consider moving to native wheel builds for OS X and removing universal2 wheels (PYTHON-1379)
9+
110
3.29.0
211
======
312
December 19, 2023

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, 0)
25+
__version_info__ = (3, 29, 1)
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.0".
29+
It should print something like "3.29.1".
3030

3131
.. _installation-datastax-graph:
3232

0 commit comments

Comments
 (0)