From: Mike Bayer Date: Thu, 11 Mar 2021 16:22:26 +0000 (-0500) Subject: - 1.5.7 X-Git-Tag: rel_1_5_7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=389d750eca71ffc18a919b3b1414a05b640b4e4b;p=thirdparty%2Fsqlalchemy%2Falembic.git - 1.5.7 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 66ea1fe5..9b96e339 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,17 @@ Changelog .. changelog:: :version: 1.5.7 - :include_notes_from: unreleased + :released: March 11, 2021 + + .. change:: + :tags: bug, autogenerate + :tickets: 813 + + Adjusted the recently added + :paramref:`.EnvironmentContext.configure.include_name` hook to accommodate + for additional object types such as "views" that don't have a parent table, + to support third party recipes and extensions. Pull request courtesy Oliver + Rice. .. changelog:: :version: 1.5.6 diff --git a/docs/build/conf.py b/docs/build/conf.py index 92b46eb1..9c1233c5 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -85,8 +85,8 @@ copyright = u"2010-2021, Mike Bayer" # noqa # The short X.Y version. version = alembic.__version__ # The full version, including alpha/beta/rc tags. -release = "1.5.6" -release_date = "March 5, 2021" +release = "1.5.7" +release_date = "March 11, 2021" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/813.rst b/docs/build/unreleased/813.rst deleted file mode 100644 index 898e1807..00000000 --- a/docs/build/unreleased/813.rst +++ /dev/null @@ -1,9 +0,0 @@ -.. change:: - :tags: bug, autogenerate - :tickets: 813 - - Adjusted the recently added - :paramref:`.EnvironmentContext.configure.include_name` hook to accommodate - for additional object types such as "views" that don't have a parent table, - to support third party recipes and extensions. Pull request courtesy Oliver - Rice.