From 7ef0350a439c93166bc8ba89fcc3de6a9a664e6c Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sat, 29 Jul 2023 15:04:17 -0400 Subject: [PATCH] Release 6.1.0 --- docs/source/internal/releases.rst | 4 ++-- docs/source/release-notes/6.1.0.rst | 22 ++++++++++++++++++++++ docs/source/release-notes/index.rst | 1 + src/flake8/__init__.py | 2 +- 4 files changed, 26 insertions(+), 3 deletions(-) create mode 100644 docs/source/release-notes/6.1.0.rst diff --git a/docs/source/internal/releases.rst b/docs/source/internal/releases.rst index 39fbdf72..fc29bd3c 100644 --- a/docs/source/internal/releases.rst +++ b/docs/source/internal/releases.rst @@ -81,9 +81,9 @@ for users. Before releasing, the following tox test environments must pass: -- Python 3.6 (a.k.a., ``tox -e py36``) +- Python 3.8 (a.k.a., ``tox -e py38``) -- Python 3.7 (a.k.a., ``tox -e py37``) +- Python 3.12 (a.k.a., ``tox -e py312``) - PyPy 3 (a.k.a., ``tox -e pypy3``) diff --git a/docs/source/release-notes/6.1.0.rst b/docs/source/release-notes/6.1.0.rst new file mode 100644 index 00000000..a2244a96 --- /dev/null +++ b/docs/source/release-notes/6.1.0.rst @@ -0,0 +1,22 @@ +6.1.0 -- 2023-07-29 +------------------- + +You can view the `6.1.0 milestone`_ on GitHub for more details. + +New Dependency Information +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Pyflakes has been updated to >= 3.1.0, < 3.2.0 (See also :pull:`1847`). +- pycodestyle has been updated to >= 2.11.0, < 2.12.0 (See also :pull:`1848`). + +Features +~~~~~~~~ + +- Deprecate ``--include-in-doctest``, ``--exclude-from-doctest`` (See also + :issue:`1747`, :pull:`1768`). +- Add support for python 3.12 (See also :pull:`1832`, :pull:`1849`, + :pull:`1850`). + +.. all links +.. _6.1.0 milestone: + https://github.com/PyCQA/flake8/milestone/48 diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst index a9eff5f0..8cd75734 100644 --- a/docs/source/release-notes/index.rst +++ b/docs/source/release-notes/index.rst @@ -10,6 +10,7 @@ with the newest releases first. .. toctree:: 6.0.0 + 6.1.0 5.x Release Series ================== diff --git a/src/flake8/__init__.py b/src/flake8/__init__.py index c6d48b72..171b1db3 100644 --- a/src/flake8/__init__.py +++ b/src/flake8/__init__.py @@ -17,7 +17,7 @@ LOG = logging.getLogger(__name__) LOG.addHandler(logging.NullHandler()) -__version__ = "6.0.0" +__version__ = "6.1.0" __version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit()) _VERBOSITY_TO_LOG_LEVEL = {