]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.13.2 rel_1_13_2
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 26 Jun 2024 15:37:04 +0000 (11:37 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 26 Jun 2024 15:37:04 +0000 (11:37 -0400)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/1384.rst [deleted file]
docs/build/unreleased/1391.rst [deleted file]
docs/build/unreleased/1394.rst [deleted file]
docs/build/unreleased/1435.rst [deleted file]
docs/build/unreleased/1479.rst [deleted file]

index 93e37479e6e90a5f9f77594dca926a733b709b3a..b240948fb6dda60a95fb1d03de85f5b70ed0ab08 100644 (file)
@@ -5,7 +5,43 @@ Changelog
 
 .. changelog::
     :version: 1.13.2
-    :include_notes_from: unreleased
+    :released: June 26, 2024
+
+    .. change::
+        :tags: bug, commands
+        :tickets: 1384
+
+        Fixed bug in alembic command stdout where long messages were not properly
+        wrapping at the terminal width.   Pull request courtesy Saif Hakim.
+
+    .. change::
+        :tags: usecase, autogenerate
+        :tickets: 1391
+
+        Improve computed column compare function to support multi-line expressions.
+        Pull request courtesy of Georg Wicke-Arndt.
+
+    .. change::
+        :tags: bug, execution
+        :tickets: 1394
+
+        Fixed internal issue where Alembic would call ``connection.execute()``
+        sending an empty tuple to indicate "no params".  In SQLAlchemy 2.1 this
+        case will be deprecated as "empty sequence" is ambiguous as to its intent.
+
+
+    .. change::
+        :tags: bug, tests
+        :tickets: 1435
+
+        Fixes to support pytest 8.1 for the test suite.
+
+    .. change::
+        :tags: bug, autogenerate, postgresql
+        :tickets: 1479
+
+        Fixed the detection of serial column in autogenerate with tables
+        not under default schema on PostgreSQL
 
 .. changelog::
     :version: 1.13.1
index 80a2082ffd51dffd254917a5c5004215b58319df..90a334e617bb4610d38e85accada44a474f65f51 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.1"
-release_date = "December 20, 2023"
+release = "1.13.2"
+release_date = "June 26, 2024"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/1384.rst b/docs/build/unreleased/1384.rst
deleted file mode 100644 (file)
index 91e6ea2..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: bug, commands
-    :tickets: 1384
-
-    Fixed bug in alembic command stdout where long messages were not properly
-    wrapping at the terminal width.   Pull request courtesy Saif Hakim.
diff --git a/docs/build/unreleased/1391.rst b/docs/build/unreleased/1391.rst
deleted file mode 100644 (file)
index c0661fb..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: usecase, autogenerate
-    :tickets: 1391
-
-    Improve computed column compare function to support multi-line expressions.
-    Pull request courtesy of Georg Wicke-Arndt.
diff --git a/docs/build/unreleased/1394.rst b/docs/build/unreleased/1394.rst
deleted file mode 100644 (file)
index 7e59770..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, execution
-    :tickets: 1394
-
-    Fixed internal issue where Alembic would call ``connection.execute()``
-    sending an empty tuple to indicate "no params".  In SQLAlchemy 2.1 this
-    case will be deprecated as "empty sequence" is ambiguous as to its intent.
-
diff --git a/docs/build/unreleased/1435.rst b/docs/build/unreleased/1435.rst
deleted file mode 100644 (file)
index 8f9e4cd..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-.. change::
-    :tags: bug, tests
-    :tickets: 1435
-
-    Fixes to support pytest 8.1 for the test suite.
diff --git a/docs/build/unreleased/1479.rst b/docs/build/unreleased/1479.rst
deleted file mode 100644 (file)
index 5a65320..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: bug, autogenerate, postgresql
-    :tickets: 1479
-
-    Fixed the detection of serial column in autogenerate with tables
-    not under default schema on PostgreSQL