From: Mike Bayer Date: Tue, 13 Feb 2024 15:02:14 +0000 (-0500) Subject: - 2.0.27 X-Git-Tag: rel_2_0_27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43f0d8408240d6c893131a6fd6a81be29149ad05;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - 2.0.27 --- diff --git a/doc/build/changelog/changelog_20.rst b/doc/build/changelog/changelog_20.rst index bc8095b6bd..9c6d42fdd3 100644 --- a/doc/build/changelog/changelog_20.rst +++ b/doc/build/changelog/changelog_20.rst @@ -10,7 +10,17 @@ .. changelog:: :version: 2.0.27 - :include_notes_from: unreleased_20 + :released: February 13, 2024 + + .. change:: + :tags: bug, postgresql, regression + :tickets: 11005 + + Fixed regression caused by just-released fix for :ticket:`10863` where an + invalid exception class were added to the "except" block, which does not + get exercised unless such a catch actually happens. A mock-style test has + been added to ensure this catch is exercised in unit tests. + .. changelog:: :version: 2.0.26 diff --git a/doc/build/changelog/unreleased_20/11005.rst b/doc/build/changelog/unreleased_20/11005.rst deleted file mode 100644 index 7c9292e5c1..0000000000 --- a/doc/build/changelog/unreleased_20/11005.rst +++ /dev/null @@ -1,9 +0,0 @@ -.. change:: - :tags: bug, postgresql, regression - :tickets: 11005 - - Fixed regression caused by just-released fix for :ticket:`10863` where an - invalid exception class were added to the "except" block, which does not - get exercised unless such a catch actually happens. A mock-style test has - been added to ensure this catch is exercised in unit tests. - diff --git a/doc/build/conf.py b/doc/build/conf.py index 126c0a8374..599a76c69f 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -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.26" +release = "2.0.27" -release_date = "February 11, 2024" +release_date = "February 13, 2024" site_base = os.environ.get("RTD_SITE_BASE", "https://www.sqlalchemy.org") site_adapter_template = "docs_adapter.mako"