summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/build/changelog.rst14
-rw-r--r--docs/build/conf.py4
-rw-r--r--docs/build/unreleased/849.rst11
3 files changed, 15 insertions, 14 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index d1ff249..8c4a4f8 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -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
diff --git a/docs/build/conf.py b/docs/build/conf.py
index 86e26ad..5cf2bf8 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -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
index b6afb33..0000000
--- a/docs/build/unreleased/849.rst
+++ /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.