From 9032a3ff00a108c6f9d7c0d3010ac7d78a908a1a Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Tue, 18 Apr 2023 15:09:10 +0200 Subject: [PATCH] Release 0.31.1 --- CHANGES.txt | 5 +++++ src/crate/client/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index fb969a87..141b0667 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -5,10 +5,15 @@ Changes for crate Unreleased ========== + +2023/04/18 0.31.1 +================= + - SQLAlchemy Core: Re-enable support for ``INSERT/UPDATE...RETURNING`` in SQLAlchemy 2.0 by adding the new ``insert_returning`` and ``update_returning`` flags in the CrateDB dialect. + 2023/03/30 0.31.0 ================= diff --git a/src/crate/client/__init__.py b/src/crate/client/__init__.py index e47ffb51..59cbb6e0 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.31.0" +__version__ = "0.31.1" apilevel = "2.0" threadsafety = 2