Skip to content

Commit 45a1d7f

Browse files
committed
Release 0.34.0
1 parent c1ac679 commit 45a1d7f

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGES.txt

+7-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ Changes for crate
55
Unreleased
66
==========
77

8-
- Properly handle Python-native UUID types in SQL parameters
8+
9+
2023/09/29 0.34.0
10+
=================
11+
12+
- Properly handle Python-native UUID types in SQL parameters. Thanks,
13+
@SStorm.
914
- SQLAlchemy: Fix handling URL parameters ``timeout`` and ``pool_size``
1015
- Permit installation with urllib3 v2, see also `urllib3 v2.0 roadmap`_
1116
and `urllib3 v2.0 migration guide`_. You can optionally retain support
@@ -14,7 +19,7 @@ Unreleased
1419
deprecated ``commonName`` attribute. Instead, going forward, only the
1520
``subjectAltName`` attribute will be used.
1621
- SQLAlchemy: Improve DDL compiler to ignore foreign key and uniqueness
17-
constraints
22+
constraints.
1823
- DBAPI: Properly raise ``IntegrityError`` exceptions instead of
1924
``ProgrammingError``, when CrateDB raises a ``DuplicateKeyException``.
2025
- SQLAlchemy: Ignore SQL's ``FOR UPDATE`` clause. Thanks, @surister.

src/crate/client/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
# version string read from setup.py using a regex. Take care not to break the
3131
# regex!
32-
__version__ = "0.33.0"
32+
__version__ = "0.34.0"
3333

3434
apilevel = "2.0"
3535
threadsafety = 2

0 commit comments

Comments
 (0)