Release 6.1.0

This commit is contained in:
Anthony Sottile 2023-07-29 15:04:17 -04:00
parent 354f873f8a
commit 7ef0350a43
4 changed files with 26 additions and 3 deletions

View file

@ -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``)

View file

@ -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

View file

@ -10,6 +10,7 @@ with the newest releases first.
.. toctree::
6.0.0
6.1.0
5.x Release Series
==================

View file

@ -17,7 +17,7 @@ import sys
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 = {