From: Mike Bayer Date: Sun, 30 Apr 2023 21:34:36 +0000 (-0400) Subject: - 2.0.12 X-Git-Tag: rel_2_0_12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5721f262db61edd06b392c063dc6aedadb61f6f4;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - 2.0.12 --- diff --git a/doc/build/changelog/changelog_20.rst b/doc/build/changelog/changelog_20.rst index ad54b7c5af..14c04826f6 100644 --- a/doc/build/changelog/changelog_20.rst +++ b/doc/build/changelog/changelog_20.rst @@ -10,7 +10,18 @@ .. changelog:: :version: 2.0.12 - :include_notes_from: unreleased_20 + :released: April 30, 2023 + + .. change:: + :tags: bug, mysql, mariadb + :tickets: 9722 + + Fixed issues regarding reflection of comments for :class:`_schema.Table` + and :class:`_schema.Column` objects, where the comments contained control + characters such as newlines. Additional testing support for these + characters as well as extended Unicode characters in table and column + comments (the latter of which aren't supported by MySQL/MariaDB) added to + testing overall. .. changelog:: :version: 2.0.11 diff --git a/doc/build/changelog/unreleased_20/9722.rst b/doc/build/changelog/unreleased_20/9722.rst deleted file mode 100644 index ad8fe557a1..0000000000 --- a/doc/build/changelog/unreleased_20/9722.rst +++ /dev/null @@ -1,10 +0,0 @@ -.. change:: - :tags: bug, mysql, mariadb - :tickets: 9722 - - Fixed issues regarding reflection of comments for :class:`_schema.Table` - and :class:`_schema.Column` objects, where the comments contained control - characters such as newlines. Additional testing support for these - characters as well as extended Unicode characters in table and column - comments (the latter of which aren't supported by MySQL/MariaDB) added to - testing overall. diff --git a/doc/build/conf.py b/doc/build/conf.py index ccedb4906a..0c1455bdbc 100644 --- a/doc/build/conf.py +++ b/doc/build/conf.py @@ -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.11" +release = "2.0.12" -release_date = "April 26, 2023" +release_date = "April 30, 2023" site_base = os.environ.get("RTD_SITE_BASE", "https://www.sqlalchemy.org") site_adapter_template = "docs_adapter.mako"