]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.7.2 rel_1_7_2
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 17 Sep 2021 13:59:36 +0000 (09:59 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 17 Sep 2021 13:59:36 +0000 (09:59 -0400)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/897.rst [deleted file]
docs/build/unreleased/900.rst [deleted file]
docs/build/unreleased/920.rst [deleted file]

index 5c30ce728886fd15a571eedc50d2e0381bd63fda..1f5771570b5c02aa88e47c1d24821b58dcb2f105 100644 (file)
@@ -5,7 +5,31 @@ Changelog
 
 .. changelog::
     :version: 1.7.2
-    :include_notes_from: unreleased
+    :released: September 17, 2021
+
+    .. change::
+        :tags: bug, typing
+        :tickets: 900
+
+        Added missing attributes from context stubs.
+
+    .. change::
+        :tags: bug, mypy
+        :tickets: 897
+
+        Fixed an import in one of the .pyi files that was triggering an
+        assertion error in some versions of mypy.
+
+    .. change::
+        :tags: bug, regression, ops
+        :tickets: 920
+
+        Fixed issue where registration of custom ops was prone to failure due to
+        the registration process running ``exec()`` on generated code that as of
+        the 1.7 series includes pep-484 annotations, which in the case of end user
+        code would result in name resolution errors when the exec occurs. The logic
+        in question has been altered so that the annotations are rendered as
+        forward references so that the ``exec()`` can proceed.
 
 .. changelog::
     :version: 1.7.1
index 786e4f2e5b452de321f9ff48993ddfa33939b93d..d34b791a2d3b465fbb4f17904c50b6f9cb46da07 100644 (file)
@@ -85,8 +85,8 @@ copyright = u"2010-2021, Mike Bayer"  # noqa
 # The short X.Y version.
 version = alembic.__version__
 # The full version, including alpha/beta/rc tags.
-release = "1.7.1"
-release_date = "August 30, 2021"
+release = "1.7.2"
+release_date = "September 17, 2021"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/897.rst b/docs/build/unreleased/897.rst
deleted file mode 100644 (file)
index 9ae0492..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: bug, mypy
-    :tickets: 897
-
-    Fixed an import in one of the .pyi files that was triggering an
-    assertion error in some versions of mypy.
diff --git a/docs/build/unreleased/900.rst b/docs/build/unreleased/900.rst
deleted file mode 100644 (file)
index 88f9f17..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-.. change::
-    :tags: bug, typing
-    :tickets: 900
-
-    Added missing attributes from context stubs.
diff --git a/docs/build/unreleased/920.rst b/docs/build/unreleased/920.rst
deleted file mode 100644 (file)
index 017ce89..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: bug, regression, ops
-    :tickets: 920
-
-    Fixed issue where registration of custom ops was prone to failure due to
-    the registration process running ``exec()`` on generated code that as of
-    the 1.7 series includes pep-484 annotations, which in the case of end user
-    code would result in name resolution errors when the exec occurs. The logic
-    in question has been altered so that the annotations are rendered as
-    forward references so that the ``exec()`` can proceed.