]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- 2.0.7 rel_2_0_7
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 18 Mar 2023 16:56:40 +0000 (12:56 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 18 Mar 2023 16:56:40 +0000 (12:56 -0400)
doc/build/changelog/changelog_20.rst
doc/build/changelog/unreleased_20/9416.rst [deleted file]
doc/build/changelog/unreleased_20/9442.rst [deleted file]
doc/build/changelog/unreleased_20/9502.rst [deleted file]
doc/build/conf.py

index b0e47750991ff2f0a700358653cd69cc685fb65e..87ffe1eb43be79cee26dca722848b19b7e986e98 100644 (file)
 
 .. changelog::
     :version: 2.0.7
-    :include_notes_from: unreleased_20
+    :released: March 18, 2023
+
+    .. change::
+        :tags: usecase, postgresql
+        :tickets: 9416
+
+        Added new PostgreSQL type :class:`_postgresql.CITEXT`. Pull request
+        courtesy Julian David Rath.
+
+    .. change::
+        :tags: bug, typing
+        :tickets: 9502
+
+        Fixed typing issue where :func:`_orm.composite` would not allow an
+        arbitrary callable as the source of the composite class.
+
+    .. change::
+          :tags: usecase, postgresql
+          :tickets: 9442
+
+          Modifications to the base PostgreSQL dialect to allow for better integration with the
+          sqlalchemy-redshift third party dialect for SQLAlchemy 2.0. Pull request courtesy
+          matthewgdv.
 
 .. changelog::
     :version: 2.0.6
diff --git a/doc/build/changelog/unreleased_20/9416.rst b/doc/build/changelog/unreleased_20/9416.rst
deleted file mode 100644 (file)
index 0b3cd0b..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: usecase, postgresql
-    :tickets: 9416
-
-    Added new PostgreSQL type :class:`_postgresql.CITEXT`. Pull request
-    courtesy Julian David Rath.
diff --git a/doc/build/changelog/unreleased_20/9442.rst b/doc/build/changelog/unreleased_20/9442.rst
deleted file mode 100644 (file)
index 2b17219..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-      :tags: usecase, postgresql
-      :tickets: 9442
-
-      Modifications to the base PostgreSQL dialect to allow for better integration with the
-      sqlalchemy-redshift third party dialect for SQLAlchemy 2.0. Pull request courtesy
-      matthewgdv.
diff --git a/doc/build/changelog/unreleased_20/9502.rst b/doc/build/changelog/unreleased_20/9502.rst
deleted file mode 100644 (file)
index 4409d62..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: bug, typing
-    :tickets: 9502
-
-    Fixed typing issue where :func:`_orm.composite` would not allow an
-    arbitrary callable as the source of the composite class.
index 4eeb7852eb7074ffb32d8416400849993c1a85e6..132b6eecd844d58e6432207b8ad0976101422e35 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.6"
+release = "2.0.7"
 
-release_date = "March 13, 2023"
+release_date = "March 18, 2023"
 
 site_base = os.environ.get("RTD_SITE_BASE", "https://www.sqlalchemy.org")
 site_adapter_template = "docs_adapter.mako"