summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-09-24 13:24:17 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2019-09-24 13:24:17 -0400
commit30673342c58ce839d94dc5bf3fc95dafae83c297 (patch)
tree57b52e6afb1284ced2cb03311992bd1613093fb6
parent310017f4acafaab750d8fdfbf3eec0007962dfc1 (diff)
downloadalembic-rel_1_2_1.tar.gz
- 1.2.1rel_1_2_1
-rw-r--r--docs/build/changelog.rst19
-rw-r--r--docs/build/conf.py4
-rw-r--r--docs/build/unreleased/592.rst6
-rw-r--r--docs/build/unreleased/601.rst9
4 files changed, 20 insertions, 18 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index cb48885..91ae7de 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -5,7 +5,24 @@ Changelog
.. changelog::
:version: 1.2.1
- :include_notes_from: unreleased
+ :released: September 24, 2019
+
+ .. change::
+ :tags: bug, command
+ :tickets: 601
+
+ Reverted the name change of the "revisions" argument to
+ :func:`.command.stamp` to "revision" as apparently applications are
+ calling upon this argument as a keyword name. Pull request courtesy
+ Thomas Bechtold. Special translations are also added to the command
+ line interface so that it is still known as "revisions" in the CLI.
+
+ .. change::
+ :tags: bug, tests
+ :tickets: 592
+
+ Removed the "test requirements" from "setup.py test", as this command now
+ only emits a removal error in any case and these requirements are unused.
.. changelog::
:version: 1.2.0
diff --git a/docs/build/conf.py b/docs/build/conf.py
index ab5c4b6..84563e5 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -85,8 +85,8 @@ copyright = u"2010-2019, Mike Bayer" # noqa
# The short X.Y version.
version = alembic.__version__
# The full version, including alpha/beta/rc tags.
-release = "1.2.0"
-release_date = "September 20, 2019"
+release = "1.2.1"
+release_date = "September 24, 2019"
# The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/592.rst b/docs/build/unreleased/592.rst
deleted file mode 100644
index 9f5f369..0000000
--- a/docs/build/unreleased/592.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
- :tags: bug, tests
- :tickets: 592
-
- Removed the "test requirements" from "setup.py test", as this command now
- only emits a removal error in any case and these requirements are unused.
diff --git a/docs/build/unreleased/601.rst b/docs/build/unreleased/601.rst
deleted file mode 100644
index 5e89f39..0000000
--- a/docs/build/unreleased/601.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-.. change::
- :tags: bug, command
- :tickets: 601
-
- Reverted the name change of the "revisions" argument to
- :func:`.command.stamp` to "revision" as apparently applications are
- calling upon this argument as a keyword name. Pull request courtesy
- Thomas Bechtold. Special translations are also added to the command
- line interface so that it is still known as "revisions" in the CLI.