diff --git a/CHANGES.txt b/CHANGES.txt index fbf7729b..2f8df79c 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -5,8 +5,13 @@ Changes for crate Unreleased ========== + +2023/03/02 0.30.1 +================= + - Fixed SQLAlchemy 2.0 incompatibility with ``CrateDialect.{has_schema,has_table}`` + 2023/02/16 0.30.0 ================= diff --git a/src/crate/client/__init__.py b/src/crate/client/__init__.py index fedcfb19..ee89c336 100644 --- a/src/crate/client/__init__.py +++ b/src/crate/client/__init__.py @@ -29,7 +29,7 @@ # version string read from setup.py using a regex. Take care not to break the # regex! -__version__ = "0.30.0" +__version__ = "0.30.1" apilevel = "2.0" threadsafety = 2