Skip to content

Commit

Permalink
Release 6.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Jul 29, 2023
1 parent 354f873 commit 7ef0350
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/source/internal/releases.rst
Expand Up @@ -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``)

Expand Down
22 changes: 22 additions & 0 deletions 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
1 change: 1 addition & 0 deletions docs/source/release-notes/index.rst
Expand Up @@ -10,6 +10,7 @@ with the newest releases first.

.. toctree::
6.0.0
6.1.0

5.x Release Series
==================
Expand Down
2 changes: 1 addition & 1 deletion src/flake8/__init__.py
Expand Up @@ -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 = {
Expand Down

0 comments on commit 7ef0350

Please sign in to comment.