]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- 2.0.34 rel_2_0_34
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 4 Sep 2024 15:16:31 +0000 (11:16 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 4 Sep 2024 15:16:31 +0000 (11:16 -0400)
doc/build/changelog/changelog_20.rst
doc/build/changelog/unreleased_20/11831.rst [deleted file]
doc/build/changelog/unreleased_20/11832.rst [deleted file]
doc/build/conf.py

index 2a432cd0dba1146506aba984a0e8bb92d3514592..1117f0abea326ed689390f128936bf75ebd8a049 100644 (file)
 
 .. changelog::
     :version: 2.0.34
-    :include_notes_from: unreleased_20
+    :released: September 4, 2024
+
+    .. change::
+        :tags: bug, orm
+        :tickets: 11831
+
+        Fixed regression caused by issue :ticket:`11814` which broke support for
+        certain flavors of :pep:`593` ``Annotated`` in the type_annotation_map when
+        builtin types such as ``list``, ``dict`` were used without an element type.
+        While this is an incomplete style of typing, these types nonetheless
+        previously would be located in the type_annotation_map correctly.
+
+    .. change::
+        :tags: bug, sqlite
+        :tickets: 11832
+
+        Fixed regression in SQLite reflection caused by :ticket:`11677` which
+        interfered with reflection for CHECK constraints that were followed
+        by other kinds of constraints within the same table definition.   Pull
+        request courtesy Harutaka Kawamura.
+
 
 .. changelog::
     :version: 2.0.33
diff --git a/doc/build/changelog/unreleased_20/11831.rst b/doc/build/changelog/unreleased_20/11831.rst
deleted file mode 100644 (file)
index 65699bf..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, orm
-    :tickets: 11831
-
-    Fixed regression caused by issue :ticket:`11814` which broke support for
-    certain flavors of :pep:`593` ``Annotated`` in the type_annotation_map when
-    builtin types such as ``list``, ``dict`` were used without an element type.
-    While this is an incomplete style of typing, these types nonetheless
-    previously would be located in the type_annotation_map correctly.
diff --git a/doc/build/changelog/unreleased_20/11832.rst b/doc/build/changelog/unreleased_20/11832.rst
deleted file mode 100644 (file)
index 9c1a79d..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, sqlite
-    :tickets: 11832
-
-    Fixed regression in SQLite reflection caused by :ticket:`11677` which
-    interfered with reflection for CHECK constraints that were followed
-    by other kinds of constraints within the same table definition.   Pull
-    request courtesy Harutaka Kawamura.
-
index 41c2773bcf2293860a073426adb95c505d3be5b6..a21225dded764d515e617efa9e0fc0967f89d1bf 100644 (file)
@@ -244,9 +244,9 @@ copyright = "2007-2024, the SQLAlchemy authors and contributors"  # noqa
 # The short X.Y version.
 version = "2.0"
 # The full version, including alpha/beta/rc tags.
-release = "2.0.33"
+release = "2.0.34"
 
-release_date = "September 3, 2024"
+release_date = "September 4, 2024"
 
 site_base = os.environ.get("RTD_SITE_BASE", "https://www.sqlalchemy.org")
 site_adapter_template = "docs_adapter.mako"