summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2023-04-24 11:08:10 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2023-04-24 11:08:10 -0400
commitc6067a5367015b6f1437a4357515e63dd8561829 (patch)
tree0e5947f705eaa57e4d04f59c42c8fcb233c50cf0
parent6d5ac4fdf0066fb073636233d8cd334f8f02b5a3 (diff)
downloadalembic-c6067a5367015b6f1437a4357515e63dd8561829.tar.gz
- 1.10.4rel_1_10_4
-rw-r--r--docs/build/changelog.rst19
-rw-r--r--docs/build/conf.py4
-rw-r--r--docs/build/unreleased/1213.rst6
-rw-r--r--docs/build/unreleased/1215.rst9
4 files changed, 20 insertions, 18 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index a64e976..f6e9d74 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -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
diff --git a/docs/build/conf.py b/docs/build/conf.py
index 0c10809..6c615df 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -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
index 29b88a4..0000000
--- a/docs/build/unreleased/1213.rst
+++ /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
index c2c3a08..0000000
--- a/docs/build/unreleased/1215.rst
+++ /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.