]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.7.1 rel_1_7_1
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 30 Aug 2021 21:49:50 +0000 (17:49 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 30 Aug 2021 21:49:50 +0000 (17:49 -0400)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/893.rst [deleted file]
docs/build/unreleased/895.rst [deleted file]
docs/build/unreleased/896.rst [deleted file]

index 9454b7bf0dbddf71be56d27c2e4a545276489d82..76d6b62196f4eee850d59e11a6d93de1eebe425f 100644 (file)
@@ -5,7 +5,34 @@ Changelog
 
 .. changelog::
     :version: 1.7.1
-    :include_notes_from: unreleased
+    :released: August 30, 2021
+
+    .. change::
+        :tags: bug, installation
+        :tickets: 893
+
+        Corrected "universal wheel" directive in setup.cfg so that building a wheel
+        does not target Python 2. The PyPi files index for 1.7.0 was corrected
+        manually. Pull request courtesy layday.
+
+    .. change::
+        :tags: bug, pep484
+        :tickets: 895
+
+        Fixed issue in generated .pyi files where default values for ``Optional``
+        arguments were missing, thereby causing mypy to consider them as required.
+
+
+    .. change::
+        :tags: bug, regression, batch
+        :tickets: 896
+
+        Fixed regression in batch mode due to :ticket:`883` where the "auto" mode
+        of batch would fail to accommodate any additional migration directives
+        beyond encountering an ``add_column()`` directive, due to a mis-application
+        of the conditional logic that was added as part of this change, leading to
+        "recreate" mode not being used in cases where it is required for SQLite
+        such as for unique constraints.
 
 .. changelog::
     :version: 1.7.0
index 81148edfc8be3d4f39136962d37c14cf651e0893..786e4f2e5b452de321f9ff48993ddfa33939b93d 100644 (file)
@@ -85,7 +85,7 @@ 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.0"
+release = "1.7.1"
 release_date = "August 30, 2021"
 
 
diff --git a/docs/build/unreleased/893.rst b/docs/build/unreleased/893.rst
deleted file mode 100644 (file)
index 546e7bb..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, installation
-    :tickets: 893
-
-    Corrected "universal wheel" directive in setup.cfg so that building a wheel
-    does not target Python 2. The PyPi files index for 1.7.0 was corrected
-    manually. Pull request courtesy layday.
diff --git a/docs/build/unreleased/895.rst b/docs/build/unreleased/895.rst
deleted file mode 100644 (file)
index a24d5d5..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, pep484
-    :tickets: 895
-
-    Fixed issue in generated .pyi files where default values for ``Optional``
-    arguments were missing, thereby causing mypy to consider them as required.
-
diff --git a/docs/build/unreleased/896.rst b/docs/build/unreleased/896.rst
deleted file mode 100644 (file)
index c6efce4..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
-    :tags: bug, regression, batch
-    :tickets: 896
-
-    Fixed regression in batch mode due to :ticket:`883` where the "auto" mode
-    of batch would fail to accommodate any additional migration directives
-    beyond encountering an ``add_column()`` directive, due to a mis-application
-    of the conditional logic that was added as part of this change, leading to
-    "recreate" mode not being used in cases where it is required for SQLite
-    such as for unique constraints.