Skip to content

Commit 7ef0350

Browse files
committed
Release 6.1.0
1 parent 354f873 commit 7ef0350

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

docs/source/internal/releases.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ for users.
8181

8282
Before releasing, the following tox test environments must pass:
8383

84-
- Python 3.6 (a.k.a., ``tox -e py36``)
84+
- Python 3.8 (a.k.a., ``tox -e py38``)
8585

86-
- Python 3.7 (a.k.a., ``tox -e py37``)
86+
- Python 3.12 (a.k.a., ``tox -e py312``)
8787

8888
- PyPy 3 (a.k.a., ``tox -e pypy3``)
8989

docs/source/release-notes/6.1.0.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
6.1.0 -- 2023-07-29
2+
-------------------
3+
4+
You can view the `6.1.0 milestone`_ on GitHub for more details.
5+
6+
New Dependency Information
7+
~~~~~~~~~~~~~~~~~~~~~~~~~~
8+
9+
- Pyflakes has been updated to >= 3.1.0, < 3.2.0 (See also :pull:`1847`).
10+
- pycodestyle has been updated to >= 2.11.0, < 2.12.0 (See also :pull:`1848`).
11+
12+
Features
13+
~~~~~~~~
14+
15+
- Deprecate ``--include-in-doctest``, ``--exclude-from-doctest`` (See also
16+
:issue:`1747`, :pull:`1768`).
17+
- Add support for python 3.12 (See also :pull:`1832`, :pull:`1849`,
18+
:pull:`1850`).
19+
20+
.. all links
21+
.. _6.1.0 milestone:
22+
https://github.com/PyCQA/flake8/milestone/48

docs/source/release-notes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ with the newest releases first.
1010

1111
.. toctree::
1212
6.0.0
13+
6.1.0
1314

1415
5.x Release Series
1516
==================

src/flake8/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
LOG = logging.getLogger(__name__)
1818
LOG.addHandler(logging.NullHandler())
1919

20-
__version__ = "6.0.0"
20+
__version__ = "6.1.0"
2121
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())
2222

2323
_VERBOSITY_TO_LOG_LEVEL = {

0 commit comments

Comments
 (0)