]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.14.0 rel_1_14_0
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 4 Nov 2024 18:42:48 +0000 (13:42 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 4 Nov 2024 18:42:48 +0000 (13:42 -0500)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/1560.rst [deleted file]

index 2d33a186b9829e92f885f2101bf154dfb35cf9c5..da36ab9c31f29cc8d5071ca2bf48a064d226232e 100644 (file)
@@ -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
index 915c690c308e31bca1ccb41a75645faf962a3d2a..57c90325fe22397991c73ef74c5f9e63b36d1ca9 100644 (file)
@@ -99,8 +99,8 @@ copyright = "2010-2024, Mike Bayer"  # noqa
 # 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 (file)
index e808b30..0000000
+++ /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.