summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2023-04-30 17:34:36 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2023-04-30 17:34:36 -0400
commit5721f262db61edd06b392c063dc6aedadb61f6f4 (patch)
tree19d9161051d0fd07021922be63f5080bc50a20ca
parent7edeef93368ce41848610420c701336e38d1c781 (diff)
downloadsqlalchemy-5721f262db61edd06b392c063dc6aedadb61f6f4.tar.gz
- 2.0.12rel_2_0_12
-rw-r--r--doc/build/changelog/changelog_20.rst13
-rw-r--r--doc/build/changelog/unreleased_20/9722.rst10
-rw-r--r--doc/build/conf.py4
3 files changed, 14 insertions, 13 deletions
diff --git a/doc/build/changelog/changelog_20.rst b/doc/build/changelog/changelog_20.rst
index ad54b7c5a..14c04826f 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 ad8fe557a..000000000
--- 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 ccedb4906..0c1455bdb 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"