]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.6.5 rel_1_6_5
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 27 May 2021 19:49:10 +0000 (15:49 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 27 May 2021 19:49:10 +0000 (15:49 -0400)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/849.rst [deleted file]

index d1ff249be4a0cac6ed01197423ded0ab8ea8f0e8..8c4a4f8ece449158232b63f5ddad46db91e47ffe 100644 (file)
@@ -5,7 +5,19 @@ Changelog
 
 .. changelog::
     :version: 1.6.5
-    :include_notes_from: unreleased
+    :released: May 27, 2021
+
+    .. change::
+        :tags: bug, autogenerate
+        :tickets: 849
+
+        Fixed issue where dialect-specific keyword arguments within the
+        :class:`.DropIndex` operation directive would not render in the
+        autogenerated Python code. As support was improved for adding dialect
+        specific arguments to directives as part of :ticket:`803`, in particular
+        arguments such as "postgresql_concurrently" which apply to the actual
+        create/drop of the index, support was needed for these to render even in a
+        drop index operation. Pull request courtesy Jet Zhou.
 
 .. changelog::
     :version: 1.6.4
index 86e26ad4e6df3db3040bb0566abccb1e6a5442b6..5cf2bf8e03098798bcc0be6024a12c56e73e4efc 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.6.4"
-release_date = "May 24, 2021"
+release = "1.6.5"
+release_date = "May 27, 2021"
 
 
 # The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/849.rst b/docs/build/unreleased/849.rst
deleted file mode 100644 (file)
index b6afb33..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-.. change::
-    :tags: bug, autogenerate
-    :tickets: 849
-
-    Fixed issue where dialect-specific keyword arguments within the
-    :class:`.DropIndex` operation directive would not render in the
-    autogenerated Python code. As support was improved for adding dialect
-    specific arguments to directives as part of :ticket:`803`, in particular
-    arguments such as "postgresql_concurrently" which apply to the actual
-    create/drop of the index, support was needed for these to render even in a
-    drop index operation. Pull request courtesy Jet Zhou.