From: Mike Bayer Date: Sat, 18 Mar 2023 16:56:40 +0000 (-0400) Subject: - 2.0.7 X-Git-Tag: rel_2_0_7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1b12c8e43f6669d83c1d226f8207b08039f2900;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - 2.0.7 --- diff --git a/doc/build/changelog/changelog_20.rst b/doc/build/changelog/changelog_20.rst index b0e4775099..87ffe1eb43 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 0b3cd0b769..0000000000 --- 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 2b172195c6..0000000000 --- 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 4409d62526..0000000000 --- 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 4eeb7852eb..132b6eecd8 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"