.. 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
# 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
+++ /dev/null
-.. 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.