Skip to content

Commit 65a38c4

Browse files
committed
Release 7.1.0
1 parent 34c97e0 commit 65a38c4

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

docs/source/release-notes/7.1.0.rst

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
7.1.0 -- 2024-06-15
2+
-------------------
3+
4+
You can view the `7.1.0 milestone`_ on GitHub for more details.
5+
6+
New Dependency Information
7+
~~~~~~~~~~~~~~~~~~~~~~~~~~
8+
9+
- pycodestyle has been updated to >= 2.12.0, < 2.13.0 (See also :pull:`1939`).
10+
11+
.. all links
12+
.. _7.1.0 milestone:
13+
https://github.com/PyCQA/flake8/milestone/50

docs/source/release-notes/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ with the newest releases first.
1010

1111
.. toctree::
1212
7.0.0
13+
7.1.0
1314

1415
6.x Release Series
1516
==================

src/flake8/__init__.py

+1-1
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__ = "7.0.0"
20+
__version__ = "7.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)