]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- 2.0.3 rel_2_0_3
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 9 Feb 2023 23:01:33 +0000 (18:01 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 9 Feb 2023 23:01:33 +0000 (18:01 -0500)
doc/build/changelog/changelog_20.rst
doc/build/changelog/unreleased_20/9254.rst [deleted file]
doc/build/changelog/unreleased_20/9271.rst [deleted file]
doc/build/conf.py

index 297617cd5f9bc6730cf377abf985b158ad39c4a7..7ecfa2875903d1b0d292cd055a666f1a247f4364 100644 (file)
 
 .. changelog::
     :version: 2.0.3
-    :include_notes_from: unreleased_20
+    :released: February 9, 2023
+
+    .. change::
+        :tags: typing, bug
+        :tickets: 9254
+
+        Remove ``typing.Self`` workaround, now using :pep:`673` for most methods
+        that return ``Self``. Pull request courtesy Yurii Karabas.
+
+    .. change::
+        :tags: bug, sql, regression
+        :tickets: 9271
+
+        Fixed critical regression in SQL expression formulation in the 2.0 series
+        due to :ticket:`7744` which improved support for SQL expressions that
+        contained many elements against the same operator repeatedly; parenthesis
+        grouping would be lost with expression elements beyond the first two
+        elements.
+
 
 .. changelog::
     :version: 2.0.2
diff --git a/doc/build/changelog/unreleased_20/9254.rst b/doc/build/changelog/unreleased_20/9254.rst
deleted file mode 100644 (file)
index 14fa4ab..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: typing, bug
-    :tickets: 9254
-
-    Remove ``typing.Self`` workaround, now using :pep:`673` for most methods
-    that return ``Self``. Pull request courtesy Yurii Karabas.
diff --git a/doc/build/changelog/unreleased_20/9271.rst b/doc/build/changelog/unreleased_20/9271.rst
deleted file mode 100644 (file)
index 3efe0b1..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: bug, sql, regression
-    :tickets: 9271
-
-    Fixed critical regression in SQL expression formulation in the 2.0 series
-    due to :ticket:`7744` which improved support for SQL expressions that
-    contained many elements against the same operator repeatedly; parenthesis
-    grouping would be lost with expression elements beyond the first two
-    elements.
-
index 443b7d3a298f7c4479d964cfbcf4c48ba147d0c4..b2c54de6519a717fc73521319457ca84ef24e23c 100644 (file)
@@ -242,9 +242,9 @@ copyright = "2007-2023, 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.2"
+release = "2.0.3"
 
-release_date = "February 6, 2023"
+release_date = "February 9, 2023"
 
 site_base = os.environ.get("RTD_SITE_BASE", "https://www.sqlalchemy.org")
 site_adapter_template = "docs_adapter.mako"