From 5b54be61f6d49e6cc1aed455c1e634bf65096bb1 Mon Sep 17 00:00:00 2001 From: absurdfarce Date: Fri, 19 Jun 2026 17:23:16 -0500 Subject: [PATCH] Release 3.30.1: changelog, version and documentation --- CHANGELOG.rst | 14 ++++++++++++++ docs/installation.rst | 2 +- pyproject.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fbc7c07cba..47b8ee3f6e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,17 @@ +3.30.1 +====== +June 19, 2026 + +Bug Fixes +--------- +* Wheels for 3.30.0 include Cython-generated .c files (CASSPYTHON-21) +* Mark non-security md5 usage to allow for compatibility with fips (PR 1288/1294) +* Prevent crash at exit (PR 1287) + +Others +------ +* Removed obsolete check for python version > 3.7+ (CASSPYTHON-18) + 3.30.0 ====== March 23, 2026 diff --git a/docs/installation.rst b/docs/installation.rst index a0a5e25dab..7e74c07d47 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -26,7 +26,7 @@ To check if the installation was successful, you can run:: python -c 'import cassandra; print(cassandra.__version__)' -This command should print something like ``3.30.0``. +This command should print something like ``3.30.1``. .. _installation-datastax-graph: diff --git a/pyproject.toml b/pyproject.toml index c5a17bae41..0af1e77012 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ requires = ["setuptools", "Cython>=3.0", "tomli"] [project] name = "cassandra-driver" description = "Apache Cassandra Python Driver" -version = "3.30.0" +version = "3.30.1" dependencies = ['geomet>=1.1', "Deprecated>=1.3.1"] readme = "README.rst" authors = [{name = "DataStax"}]