]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.5.2 rel_1_5_2
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 20 Jan 2021 18:30:40 +0000 (13:30 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 20 Jan 2021 18:30:40 +0000 (13:30 -0500)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/782.rst [deleted file]
docs/build/unreleased/784.rst [deleted file]

index 0fe68593bfebd6afde96963a1a8541c4d620e9dc..23aa38977836f0b870fc234d95332eaa1785520f 100644 (file)
@@ -5,7 +5,25 @@ Changelog
 
 .. changelog::
     :version: 1.5.2
-    :include_notes_from: unreleased
+    :released: January 20, 2021
+
+    .. change::
+        :tags: bug, versioning, regression
+        :tickets: 784
+
+        Fixed regression where new "loop detection" feature introduced in
+        :ticket:`757` produced false positives for revision names that have
+        overlapping substrings between revision number and down revision and/or
+        dependency, if the downrev/dependency were not in sequence form.
+
+    .. change::
+        :tags: bug, environment
+        :tickets: 782
+
+        Fixed regression where Alembic would fail to create a transaction properly
+        if the :class:`sqlalchemy.engine.Connection` were a so-called "branched"
+        connection, that is, one where the ``.connect()`` method had been called to
+        create a "sub" connection.
 
 .. changelog::
     :version: 1.5.1
index 897574b8fbc3523aead357d0063b8de3999b0c7f..7b16edd2b2e671536a42c0bfcb4f93b4b9625337 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.5.1"
-release_date = "January 19, 2021"
+release = "1.5.2"
+release_date = "January 20, 2021"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/782.rst b/docs/build/unreleased/782.rst
deleted file mode 100644 (file)
index 0a00b46..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, environment
-    :tickets: 782
-
-    Fixed regression where Alembic would fail to create a transaction properly
-    if the :class:`sqlalchemy.engine.Connection` were a so-called "branched"
-    connection, that is, one where the ``.connect()`` method had been called to
-    create a "sub" connection.
diff --git a/docs/build/unreleased/784.rst b/docs/build/unreleased/784.rst
deleted file mode 100644 (file)
index c85ba3c..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, versioning, regression
-    :tickets: 784
-
-    Fixed regression where new "loop detection" feature introduced in
-    :ticket:`757` produced false positives for revision names that have
-    overlapping substrings between revision number and down revision and/or
-    dependency, if the downrev/dependency were not in sequence form.