From: Mike Bayer Date: Sat, 11 Oct 2025 18:37:19 +0000 (-0400) Subject: - 1.17.0 X-Git-Tag: rel_1_17_0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7bd9a04c0f57ee81ab3cb90f29044189d44e07b0;p=thirdparty%2Fsqlalchemy%2Falembic.git - 1.17.0 --- diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index 0bd8d88b..bab889a7 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -5,7 +5,21 @@ Changelog .. changelog:: :version: 1.17.0 - :include_notes_from: unreleased + :released: October 11, 2025 + + .. change:: + :tags: change, tests + + The top-level test runner has been changed to use ``nox``, adding a + ``noxfile.py`` as well as some included modules. The ``tox.ini`` file + remains in place so that ``tox`` runs will continue to function in the near + term, however it will be eventually removed and improvements and + maintenance going forward will be only towards ``noxfile.py``. + + .. change:: + :tags: change, general + + The minimum Python version is now 3.10, as Python 3.9 is EOL. .. changelog:: :version: 1.16.5 diff --git a/docs/build/conf.py b/docs/build/conf.py index 38ce3290..1375950d 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -100,8 +100,8 @@ copyright = "2010-2025, Mike Bayer" # noqa # The short X.Y version. version = alembic.__version__ # The full version, including alpha/beta/rc tags. -release = "1.16.5" -release_date = "August 27, 2025" +release = "1.17.0" +release_date = "October 11, 2025" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/nox.rst b/docs/build/unreleased/nox.rst deleted file mode 100644 index dbc4d5ef..00000000 --- a/docs/build/unreleased/nox.rst +++ /dev/null @@ -1,8 +0,0 @@ -.. change:: - :tags: change, tests - - The top-level test runner has been changed to use ``nox``, adding a - ``noxfile.py`` as well as some included modules. The ``tox.ini`` file - remains in place so that ``tox`` runs will continue to function in the near - term, however it will be eventually removed and improvements and - maintenance going forward will be only towards ``noxfile.py``. diff --git a/docs/build/unreleased/remove_py39.rst b/docs/build/unreleased/remove_py39.rst deleted file mode 100644 index 4c300bb9..00000000 --- a/docs/build/unreleased/remove_py39.rst +++ /dev/null @@ -1,4 +0,0 @@ -.. change:: - :tags: change, general - - The minimum Python version is now 3.10, as Python 3.9 is EOL.