]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
- 1.9.0 rel_1_9_0
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 15 Dec 2022 18:04:05 +0000 (13:04 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 15 Dec 2022 18:04:05 +0000 (13:04 -0500)
docs/build/changelog.rst
docs/build/conf.py
docs/build/unreleased/1110.rst [deleted file]
docs/build/unreleased/724.rst [deleted file]
docs/build/unreleased/tox_fix.rst [deleted file]

index 178a2a20ef96f40fb44f2f153b28504b0318fa95..c934fe1cb916507375389c5907b116a7649f8b27 100644 (file)
@@ -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
index 11a0e7f0ff9fcefd0dd9e86126e1a552e11500e1..c77f2a4ccc8da38d04f76c43d869cce920f843d0 100644 (file)
@@ -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 (file)
index fe9cfff..0000000
+++ /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 (file)
index 5bd1987..0000000
+++ /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 (file)
index f37829f..0000000
+++ /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.