summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/build/changelog/changelog_20.rst24
-rw-r--r--doc/build/changelog/unreleased_20/9416.rst6
-rw-r--r--doc/build/changelog/unreleased_20/9442.rst7
-rw-r--r--doc/build/changelog/unreleased_20/9502.rst6
-rw-r--r--doc/build/conf.py4
5 files changed, 25 insertions, 22 deletions
diff --git a/doc/build/changelog/changelog_20.rst b/doc/build/changelog/changelog_20.rst
index b0e477509..87ffe1eb4 100644
--- a/doc/build/changelog/changelog_20.rst
+++ b/doc/build/changelog/changelog_20.rst
@@ -10,7 +10,29 @@
.. 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
index 0b3cd0b76..000000000
--- a/doc/build/changelog/unreleased_20/9416.rst
+++ /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
index 2b172195c..000000000
--- a/doc/build/changelog/unreleased_20/9442.rst
+++ /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
index 4409d6252..000000000
--- a/doc/build/changelog/unreleased_20/9502.rst
+++ /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.
diff --git a/doc/build/conf.py b/doc/build/conf.py
index 4eeb7852e..132b6eecd 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.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"