]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.11.3 rel_1_11_3
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 16 Aug 2023 16:49:05 +0000 (12:49 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 16 Aug 2023 16:49:05 +0000 (12:49 -0400)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/1270.rst [deleted file]
docs/build/unreleased/1273.rst [deleted file]
docs/build/unreleased/1291.rst [deleted file]

index f4ae2227bbd2f092fe318e825de5a36d06154332..d29b1ae7b8441f39a2326f6a7a3ee8c14ecd32f6 100644 (file)
@@ -5,7 +5,33 @@ Changelog
 
 .. changelog::
     :version: 1.11.3
-    :include_notes_from: unreleased
+    :released: August 16, 2023
+
+    .. change::
+        :tags: bug, autogenerate, postgresql
+        :tickets: 1270
+
+        Improved autogenerate compare of expression based indexes on PostgreSQL
+        to produce fewer wrong detections.
+
+    .. change::
+        :tags: bug, autogenerate
+        :tickets: 1291
+
+        Fixed issue with ``NULLS NOT DISTINCT`` detection in postgresql that
+        would keep detecting changes in the index or unique constraint.
+
+    .. change::
+        :tags: bug, commands
+        :tickets: 1273
+
+        Added ``encoding="locale"`` setting to the use of Python's
+        ``ConfigParser.read()``, so that a warning is not generated when using the
+        recently added Python feature ``PYTHONWARNDEFAULTENCODING`` specified in
+        :pep:`597`. The encoding is passed as the ``"locale"`` string under Python
+        3.10 and greater, which indicates that the system-level locale should be
+        used, as was the case already here.  Pull request courtesy Kevin Kirsche.
+
 
 .. changelog::
     :version: 1.11.2
index 173fe5b167c9fbc17937ab88592b07554bdb8c86..44451bb85122910352ecf6a3f9562abd0cc297a7 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.11.2"
-release_date = "August 4, 2023"
+release = "1.11.3"
+release_date = "August 16, 2023"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/1270.rst b/docs/build/unreleased/1270.rst
deleted file mode 100644 (file)
index 46d0e3e..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: bug, autogenerate, postgresql
-    :tickets: 1270
-
-    Improved autogenerate compare of expression based indexes on PostgreSQL
-    to produce fewer wrong detections.
diff --git a/docs/build/unreleased/1273.rst b/docs/build/unreleased/1273.rst
deleted file mode 100644 (file)
index 1577041..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-.. change::
-    :tags: bug, commands
-    :tickets: 1273
-
-    Added ``encoding="locale"`` setting to the use of Python's
-    ``ConfigParser.read()``, so that a warning is not generated when using the
-    recently added Python feature ``PYTHONWARNDEFAULTENCODING`` specified in
-    :pep:`597`. The encoding is passed as the ``"locale"`` string under Python
-    3.10 and greater, which indicates that the system-level locale should be
-    used, as was the case already here.  Pull request courtesy Kevin Kirsche.
-
diff --git a/docs/build/unreleased/1291.rst b/docs/build/unreleased/1291.rst
deleted file mode 100644 (file)
index f2f6e04..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: bug, autogenerate
-    :tickets: 1291
-
-    Fixed issue with ``NULLS NOT DISTINCT`` detection in postgresql that
-    would keep detecting changes in the index or unique constraint.