summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2022-12-15 13:04:05 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2022-12-15 13:04:05 -0500
commitdad8266bda4acc6d418360b9c3ae2ea56bf85792 (patch)
tree02d75b79f84c47afa0ff52bd1ea15f6535bd5b6d
parent4678d7f1da009689449a6550768139c32b50c646 (diff)
downloadalembic-rel_1_9_0.tar.gz
- 1.9.0rel_1_9_0
-rw-r--r--docs/build/changelog.rst35
-rw-r--r--docs/build/conf.py4
-rw-r--r--docs/build/unreleased/1110.rst10
-rw-r--r--docs/build/unreleased/724.rst14
-rw-r--r--docs/build/unreleased/tox_fix.rst6
5 files changed, 36 insertions, 33 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index 178a2a2..c934fe1 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -5,7 +5,40 @@ Changelog
.. changelog::
:version: 1.9.0
- :include_notes_from: unreleased
+ :released: December 15, 2022
+
+ .. change::
+ :tags: feature, commands
+ :tickets: 724
+
+ Added new Alembic command ``alembic check``. This performs the widely
+ requested feature of running an "autogenerate" comparison between the
+ current database and the :class:`.MetaData` that's currently set up for
+ autogenerate, returning an error code if the two do not match, based on
+ current autogenerate settings. Pull request courtesy Nathan Louie.
+
+ .. seealso::
+
+ :ref:`alembic_check`
+
+
+ .. change::
+ :tags: bug, tests
+
+ Fixed issue in tox.ini file where changes in the tox 4.0 series to the
+ format of "passenv" caused tox to not function correctly, in particular
+ raising an error as of tox 4.0.6.
+
+ .. change::
+ :tags: bug, typing
+ :tickets: 1110
+
+ Fixed typing issue where :paramref:`.revision.process_revision_directives`
+ was not fully typed; additionally ensured all ``Callable`` and ``Dict``
+ arguments to :meth:`.EnvironmentContext.configure` include parameters in
+ the typing declaration.
+
+ Additionally updated the codebase for Mypy 0.990 compliance.
.. changelog::
:version: 1.8.1
diff --git a/docs/build/conf.py b/docs/build/conf.py
index 11a0e7f..c77f2a4 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -95,8 +95,8 @@ copyright = "2010-2022, Mike Bayer" # noqa
# The short X.Y version.
version = alembic.__version__
# The full version, including alpha/beta/rc tags.
-release = "1.8.1"
-release_date = "July 13, 2022"
+release = "1.9.0"
+release_date = "December 15, 2022"
# The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/1110.rst b/docs/build/unreleased/1110.rst
deleted file mode 100644
index fe9cfff..0000000
--- a/docs/build/unreleased/1110.rst
+++ /dev/null
@@ -1,10 +0,0 @@
-.. change::
- :tags: bug, typing
- :tickets: 1110
-
- Fixed typing issue where :paramref:`.revision.process_revision_directives`
- was not fully typed; additionally ensured all ``Callable`` and ``Dict``
- arguments to :meth:`.EnvironmentContext.configure` include parameters in
- the typing declaration.
-
- Additionally updated the codebase for Mypy 0.990 compliance. \ No newline at end of file
diff --git a/docs/build/unreleased/724.rst b/docs/build/unreleased/724.rst
deleted file mode 100644
index 5bd1987..0000000
--- a/docs/build/unreleased/724.rst
+++ /dev/null
@@ -1,14 +0,0 @@
-.. change::
- :tags: feature, commands
- :tickets: 724
-
- Added new Alembic command ``alembic check``. This performs the widely
- requested feature of running an "autogenerate" comparison between the
- current database and the :class:`.MetaData` that's currently set up for
- autogenerate, returning an error code if the two do not match, based on
- current autogenerate settings. Pull request courtesy Nathan Louie.
-
- .. seealso::
-
- :ref:`alembic_check`
-
diff --git a/docs/build/unreleased/tox_fix.rst b/docs/build/unreleased/tox_fix.rst
deleted file mode 100644
index f37829f..0000000
--- a/docs/build/unreleased/tox_fix.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
- :tags: bug, tests
-
- Fixed issue in tox.ini file where changes in the tox 4.0 series to the
- format of "passenv" caused tox to not function correctly, in particular
- raising an error as of tox 4.0.6.