]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.10.4 rel_1_10_4
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 24 Apr 2023 15:08:10 +0000 (11:08 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 24 Apr 2023 15:08:10 +0000 (11:08 -0400)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/1213.rst [deleted file]
docs/build/unreleased/1215.rst [deleted file]

index a64e97611d86e9bcb2c67a5c70b34662803f59e4..f6e9d74b4c0fc349a11f01efa5799919595e5bf3 100644 (file)
@@ -5,7 +5,24 @@ Changelog
 
 .. changelog::
     :version: 1.10.4
-    :include_notes_from: unreleased
+    :released: April 24, 2023
+
+    .. change::
+        :tags: postgresql, autogenerate
+        :tickets: 1213
+
+        Added support for autogenerate comparison of indexes on PostgreSQL which
+        include SQL sort option, such as ``ASC`` or ``NULLS FIRST``.
+
+    .. change::
+        :tags: bug, operations
+        :tickets: 1215
+
+        Fixed issue where using a directive such as ``op.create_foreign_key()`` to
+        create a self-referential constraint on a single table where the same
+        column were present on both sides (e.g. within a composite foreign key)
+        would produce an error under SQLAlchemy 2.0 and a warning under SQLAlchemy
+        1.4 indicating that a duplicate column were being added to a table.
 
 .. changelog::
     :version: 1.10.3
index 0c1080960995f690212d75cc5d6a40698ae4cd6e..6c615dfea0c4a725b81f100819bc9d462207f2ae 100644 (file)
@@ -99,8 +99,8 @@ copyright = "2010-2023, Mike Bayer"  # noqa
 # The short X.Y version.
 version = alembic.__version__
 # The full version, including alpha/beta/rc tags.
-release = "1.10.3"
-release_date = "April 5, 2023"
+release = "1.10.4"
+release_date = "April 24, 2023"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/1213.rst b/docs/build/unreleased/1213.rst
deleted file mode 100644 (file)
index 29b88a4..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: postgresql, autogenerate
-    :tickets: 1213
-
-    Added support for autogenerate comparison of indexes on PostgreSQL which
-    include SQL sort option, such as ``ASC`` or ``NULLS FIRST``.
diff --git a/docs/build/unreleased/1215.rst b/docs/build/unreleased/1215.rst
deleted file mode 100644 (file)
index c2c3a08..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, operations
-    :tickets: 1215
-
-    Fixed issue where using a directive such as ``op.create_foreign_key()`` to
-    create a self-referential constraint on a single table where the same
-    column were present on both sides (e.g. within a composite foreign key)
-    would produce an error under SQLAlchemy 2.0 and a warning under SQLAlchemy
-    1.4 indicating that a duplicate column were being added to a table.