]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.17.1 rel_1_17_1
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 29 Oct 2025 00:21:39 +0000 (20:21 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 29 Oct 2025 00:21:39 +0000 (20:21 -0400)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/1540.rst [deleted file]
docs/build/unreleased/1705.rst [deleted file]

index f411078d5c70327a420a3fde3b576f245189070f..31945357dcf6f54554399311f06bf1afd41a4549 100644 (file)
@@ -5,7 +5,29 @@ Changelog
 
 .. changelog::
     :version: 1.17.1
-    :include_notes_from: unreleased
+    :released: October 28, 2025
+
+    .. change::
+        :tags: bug, commands
+        :tickets: 1540
+
+        Disallow ':' character in custom revision identifiers. Previously, using a
+        colon in a revision ID (e.g., 'REV:1') would create the revision, however
+        revisions with colons in them are not correctly interpreted by other
+        commands, as it overlaps with the revision range syntax.   Pull request
+        courtesy Kim Wooseok with original implementation by Hrushikesh Patil.
+
+    .. change::
+       :tags: usecase, commands
+       :tickets: 1705
+
+       Added :paramref:`.command.current.check_heads` parameter to
+       :func:`.command.current` command, available from the command line via the
+       ``--check-heads`` option to ``alembic current``.  This tests if all head
+       revisions are applied to the database and raises :class:`.DatabaseNotAtHead`
+       (or from the command line, exits with a non-zero exit code) if this is not
+       the case.  The parameter operates equvialently to the cookbook recipe
+       :ref:`cookbook_check_heads`. Pull request courtesy Stefan Scherfke.
 
 .. changelog::
     :version: 1.17.0
index 1375950df88dc4781539e051127993505ac9dcdb..d3c7e14dbf00078dd5983197a090d133b13fbb73 100644 (file)
@@ -100,8 +100,8 @@ copyright = "2010-2025, Mike Bayer"  # noqa
 # The short X.Y version.
 version = alembic.__version__
 # The full version, including alpha/beta/rc tags.
-release = "1.17.0"
-release_date = "October 11, 2025"
+release = "1.17.1"
+release_date = "October 28, 2025"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/1540.rst b/docs/build/unreleased/1540.rst
deleted file mode 100644 (file)
index c0f8f0d..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, commands
-    :tickets: 1540
-
-    Disallow ':' character in custom revision identifiers. Previously, using a
-    colon in a revision ID (e.g., 'REV:1') would create the revision, however
-    revisions with colons in them are not correctly interpreted by other
-    commands, as it overlaps with the revision range syntax.   Pull request
-    courtesy Kim Wooseok with original implementation by Hrushikesh Patil.
\ No newline at end of file
diff --git a/docs/build/unreleased/1705.rst b/docs/build/unreleased/1705.rst
deleted file mode 100644 (file)
index f1daf2e..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-.. change::
-   :tags: usecase, commands
-   :tickets: 1705
-
-   Added :paramref:`.command.current.check_heads` parameter to
-   :func:`.command.current` command, available from the command line via the
-   ``--check-heads`` option to ``alembic current``.  This tests if all head
-   revisions are applied to the database and raises :class:`.DatabaseNotAtHead`
-   (or from the command line, exits with a non-zero exit code) if this is not
-   the case.  The parameter operates equvialently to the cookbook recipe
-   :ref:`cookbook_check_heads`. Pull request courtesy Stefan Scherfke.