]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.0.10 rel_1_0_10
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 28 Apr 2019 18:55:16 +0000 (14:55 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 28 Apr 2019 18:55:16 +0000 (14:55 -0400)
docs/build/changelog.rst
docs/build/unreleased/551.rst [deleted file]
docs/build/unreleased/552.rst [deleted file]
docs/build/unreleased/553.rst [deleted file]

index 0a37e34064d38e5e88256b9f4ff6d7b397c748f5..d0badc305c03375c003d27a1924bb8437e4bc048 100644 (file)
@@ -5,7 +5,36 @@ Changelog
 
 .. changelog::
     :version: 1.0.10
-    :include_notes_from: unreleased
+    :released: April 28, 2019
+
+    .. change::
+       :tags: bug, commands
+       :tickets: 552
+
+       Fixed bug introduced in release 0.9.0 where the helptext for commands
+       inadvertently got expanded to include function docstrings from the
+       command.py module.  The logic has been adjusted to only refer to the first
+       line(s) preceding the first line break within each docstring, as was the
+       original intent.
+
+    .. change::
+        :tags: bug, operations, mysql
+        :tickets: 551
+
+        Added an assertion in :meth:`.RevisionMap.get_revisions` and other methods
+        which ensures revision numbers are passed as strings or collections of
+        strings.   Driver issues particularly on MySQL may inadvertently be passing
+        bytes here which leads to failures later on.
+
+    .. change::
+        :tags: bug, autogenerate, mysql
+        :tickets: 553
+
+        Fixed bug when using the
+        :paramref:`.EnvironmentContext.configure.compare_server_default` flag set
+        to ``True`` where a server default that is introduced in the table metadata
+        on an ``Integer`` column, where there is no existing server default in the
+        database, would raise a ``TypeError``.
 
 .. changelog::
     :version: 1.0.9
diff --git a/docs/build/unreleased/551.rst b/docs/build/unreleased/551.rst
deleted file mode 100644 (file)
index 043a162..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, operations, mysql
-    :tickets: 551
-
-    Added an assertion in :meth:`.RevisionMap.get_revisions` and other methods
-    which ensures revision numbers are passed as strings or collections of
-    strings.   Driver issues particularly on MySQL may inadvertently be passing
-    bytes here which leads to failures later on.
\ No newline at end of file
diff --git a/docs/build/unreleased/552.rst b/docs/build/unreleased/552.rst
deleted file mode 100644 (file)
index 69a918f..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-   :tags: bug, commands
-   :tickets: 552
-
-   Fixed bug introduced in release 0.9.0 where the helptext for commands
-   inadvertently got expanded to include function docstrings from the
-   command.py module.  The logic has been adjusted to only refer to the first
-   line(s) preceding the first line break within each docstring, as was the
-   original intent.
diff --git a/docs/build/unreleased/553.rst b/docs/build/unreleased/553.rst
deleted file mode 100644 (file)
index b6469fa..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, autogenerate, mysql
-    :tickets: 553
-
-    Fixed bug when using the
-    :paramref:`.EnvironmentContext.configure.compare_server_default` flag set
-    to ``True`` where a server default that is introduced in the table metadata
-    on an ``Integer`` column, where there is no existing server default in the
-    database, would raise a ``TypeError``.