summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-05-24 16:38:36 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2021-05-24 16:38:36 -0400
commit79eb3c722c64e669e748ddc07cfa1642fb6fb133 (patch)
tree49f69e8d59fc2de73bc9951ab2c7a1d47de53dbd
parent19e1f6c1a72be95d0962065c781aed970d1d50ae (diff)
downloadalembic-rel_1_6_4.tar.gz
- 1.6.4rel_1_6_4
-rw-r--r--docs/build/changelog.rst10
-rw-r--r--docs/build/conf.py4
-rw-r--r--docs/build/unreleased/848.rst7
3 files changed, 11 insertions, 10 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index 7ea1fdb..92f649a 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -5,7 +5,15 @@ Changelog
.. changelog::
:version: 1.6.4
- :include_notes_from: unreleased
+ :released: May 24, 2021
+
+ .. change::
+ :tags: bug, regression, op directives
+ :tickets: 848
+
+ Fixed regression caused by just fixed :ticket:`844` that scaled back the
+ filter for ``unique=True/index=True`` too far such that these directives no
+ longer worked for the ``op.create_table()`` op, this has been fixed.
.. changelog::
:version: 1.6.3
diff --git a/docs/build/conf.py b/docs/build/conf.py
index 7953b5f..86e26ad 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.3"
-release_date = "May 21, 2021"
+release = "1.6.4"
+release_date = "May 24, 2021"
# The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/848.rst b/docs/build/unreleased/848.rst
deleted file mode 100644
index 6596e6f..0000000
--- a/docs/build/unreleased/848.rst
+++ /dev/null
@@ -1,7 +0,0 @@
-.. change::
- :tags: bug, regression, op directives
- :tickets: 848
-
- Fixed regression caused by just fixed :ticket:`844` that scaled back the
- filter for ``unique=True/index=True`` too far such that these directives no
- longer worked for the ``op.create_table()`` op, this has been fixed.