]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 0.9.10 rel_0_9_10
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 29 Jun 2018 20:25:00 +0000 (16:25 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 29 Jun 2018 20:25:00 +0000 (16:25 -0400)
docs/build/changelog.rst
docs/build/unreleased/494.rst [deleted file]
docs/build/unreleased/drop_repr.rst [deleted file]
docs/build/unreleased/render_autoinc.rst [deleted file]

index c77758980761d09a863ac12aab096d635fb6faa3..8c1b11e5102aa4d096cec26edf03d8f77f669103 100644 (file)
@@ -5,7 +5,31 @@ Changelog
 
 .. changelog::
     :version: 0.9.10
-    :include_notes_from: unreleased
+    :released: June 29, 2018
+
+    .. change::
+        :tags: bug, autogenerate
+
+        The "op.drop_constraint()" directive will now render using ``repr()`` for
+        the schema name, in the same way that "schema" renders for all the other op
+        directives.  Pull request courtesy Denis Kataev.
+
+    .. change::
+        :tags: bug, autogenerate
+        :tickets: 494
+
+        Added basic capabilities for external dialects to support rendering of
+        "nested" types, like arrays, in a manner similar to that of the Postgresql
+        dialect.
+
+    .. change::
+        :tags: bug, autogenerate
+
+        Fixed issue where "autoincrement=True" would not render for a column that
+        specified it, since as of SQLAlchemy 1.1 this is no longer the default
+        value for "autoincrement".  Note the behavior only takes effect against the
+        SQLAlchemy 1.1.0 and higher; for pre-1.1 SQLAlchemy, "autoincrement=True"
+        does not render as was the case before. Pull request courtesy  Elad Almos.
 
 .. changelog::
     :version: 0.9.9
diff --git a/docs/build/unreleased/494.rst b/docs/build/unreleased/494.rst
deleted file mode 100644 (file)
index 73f67df..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
-    :tags: bug, autogenerate
-    :tickets: 494
-
-    Added basic capabilities for external dialects to support rendering of
-    "nested" types, like arrays, in a manner similar to that of the Postgresql
-    dialect.
diff --git a/docs/build/unreleased/drop_repr.rst b/docs/build/unreleased/drop_repr.rst
deleted file mode 100644 (file)
index 3f3c599..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
-    :tags: bug, autogenerate
-
-    The "op.drop_constraint()" directive will now render using ``repr()`` for
-    the schema name, in the same way that "schema" renders for all the other op
-    directives.  Pull request courtesy Denis Kataev.
diff --git a/docs/build/unreleased/render_autoinc.rst b/docs/build/unreleased/render_autoinc.rst
deleted file mode 100644 (file)
index 50962ca..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
-    :tags: bug, autogenerate
-
-    Fixed issue where "autoincrement=True" would not render for a column that
-    specified it, since as of SQLAlchemy 1.1 this is no longer the default
-    value for "autoincrement".  Note the behavior only takes effect against the
-    SQLAlchemy 1.1.0 and higher; for pre-1.1 SQLAlchemy, "autoincrement=True"
-    does not render as was the case before. Pull request courtesy  Elad Almos.