From 0c70a0bb3f64aff5c6c729497f17b2bf63d882fa Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 4 Nov 2024 13:42:48 -0500 Subject: [PATCH] - 1.14.0 --- docs/build/changelog.rst | 15 ++++++++++++++- docs/build/conf.py | 4 ++-- docs/build/unreleased/1560.rst | 12 ------------ 3 files changed, 16 insertions(+), 15 deletions(-) delete mode 100644 docs/build/unreleased/1560.rst diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 2d33a186..da36ab9c 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,20 @@ Changelog .. changelog:: :version: 1.14.0 - :include_notes_from: unreleased + :released: November 4, 2024 + + .. change:: + :tags: usecase, runtime + :tickets: 1560 + + Added a new hook to the :class:`.DefaultImpl` + :meth:`.DefaultImpl.version_table_impl`. This allows third party dialects + to define the exact structure of the alembic_version table, to include use + cases where the table requires special directives and/or additional columns + so that it may function correctly on a particular backend. This is not + intended as a user-expansion hook, only a dialect implementation hook to + produce a working alembic_version table. Pull request courtesy Maciek + Bryński. .. changelog:: :version: 1.13.3 diff --git a/docs/build/conf.py b/docs/build/conf.py index 915c690c..57c90325 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -99,8 +99,8 @@ # The short X.Y version. version = alembic.__version__ # The full version, including alpha/beta/rc tags. -release = "1.13.3" -release_date = "September 23, 2024" +release = "1.14.0" +release_date = "November 4, 2024" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/1560.rst b/docs/build/unreleased/1560.rst deleted file mode 100644 index e808b307..00000000 --- a/docs/build/unreleased/1560.rst +++ /dev/null @@ -1,12 +0,0 @@ -.. change:: - :tags: usecase, runtime - :tickets: 1560 - - Added a new hook to the :class:`.DefaultImpl` - :meth:`.DefaultImpl.version_table_impl`. This allows third party dialects - to define the exact structure of the alembic_version table, to include use - cases where the table requires special directives and/or additional columns - so that it may function correctly on a particular backend. This is not - intended as a user-expansion hook, only a dialect implementation hook to - produce a working alembic_version table. Pull request courtesy Maciek - Bryński.