]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 0.9.9 rel_0_9_9
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 22 Mar 2018 14:06:32 +0000 (10:06 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 22 Mar 2018 14:06:32 +0000 (10:06 -0400)
docs/build/changelog.rst
docs/build/unreleased/455.rst [deleted file]
docs/build/unreleased/481.rst [deleted file]
docs/build/unreleased/483.rst [deleted file]
docs/build/unreleased/487.rst [deleted file]

index 5addbfa71c4d0c156a758fee17ef42d89b1f8dd8..1b564a91c2aafa58334944cff0ddc54afc7cbee6 100644 (file)
@@ -5,7 +5,45 @@ Changelog
 
 .. changelog::
     :version: 0.9.9
-    :include_notes_from: unreleased
+    :released: March 22, 2018
+
+    .. change::
+        :tags: feature, commands
+        :tickets: 481
+
+        Added new flag ``--indicate-current`` to the ``alembic history`` command.
+        When listing versions, it will include the token "(current)" to indicate
+        the given version is a current head in the target database.  Pull request
+        courtesy Kazutaka Mise.
+
+    .. change::
+        :tags: bug, autogenerate, mysql
+        :tickets: 455
+
+        The fix for :ticket:`455` in version 0.9.6 involving MySQL server default
+        comparison was entirely non functional, as the test itself was also broken
+        and didn't reveal that it wasn't working. The regular expression to compare
+        server default values like CURRENT_TIMESTAMP to current_timestamp() is
+        repaired.
+
+    .. change::
+        :tags: bug, mysql, autogenerate
+        :tickets: 483
+
+        Fixed bug where MySQL server default comparisons were basically not working
+        at all due to incorrect regexp added in :ticket:`455`.  Also accommodates
+        for MariaDB 10.2 quoting differences in reporting integer based server
+        defaults.
+
+
+
+
+    .. change::
+        :tags: bug, operations, mysql
+        :tickets: 487
+
+        Fixed bug in ``op.drop_constraint()`` for MySQL where
+        quoting rules would not be applied to the constraint name.
 
 .. changelog::
     :version: 0.9.8
diff --git a/docs/build/unreleased/455.rst b/docs/build/unreleased/455.rst
deleted file mode 100644 (file)
index c9d439d..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
-    :tags: bug, autogenerate, mysql
-    :tickets: 455
-
-    The fix for :ticket:`455` in version 0.9.6 involving MySQL server default
-    comparison was entirely non functional, as the test itself was also broken
-    and didn't reveal that it wasn't working. The regular expression to compare
-    server default values like CURRENT_TIMESTAMP to current_timestamp() is
-    repaired.
diff --git a/docs/build/unreleased/481.rst b/docs/build/unreleased/481.rst
deleted file mode 100644 (file)
index b94a09c..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: feature, commands
-    :tickets: 481
-
-    Added new flag ``--indicate-current`` to the ``alembic history`` command.
-    When listing versions, it will include the token "(current)" to indicate
-    the given version is a current head in the target database.  Pull request
-    courtesy Kazutaka Mise.
diff --git a/docs/build/unreleased/483.rst b/docs/build/unreleased/483.rst
deleted file mode 100644 (file)
index fc4ca12..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-.. change::
-    :tags: bug, mysql, autogenerate
-    :tickets: 483
-
-    Fixed bug where MySQL server default comparisons were basically not working
-    at all due to incorrect regexp added in :ticket:`455`.  Also accommodates
-    for MariaDB 10.2 quoting differences in reporting integer based server
-    defaults.
-
-
-
diff --git a/docs/build/unreleased/487.rst b/docs/build/unreleased/487.rst
deleted file mode 100644 (file)
index 273edf2..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: bug, operations, mysql
-    :tickets: 487
-
-    Fixed bug in ``op.drop_constraint()`` for MySQL where
-    quoting rules would not be applied to the constraint name.