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 @@ # 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.