Skip to content

Commit

Permalink
Release 7.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Jun 15, 2024
1 parent 34c97e0 commit 65a38c4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
13 changes: 13 additions & 0 deletions docs/source/release-notes/7.1.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
7.1.0 -- 2024-06-15
-------------------

You can view the `7.1.0 milestone`_ on GitHub for more details.

New Dependency Information
~~~~~~~~~~~~~~~~~~~~~~~~~~

- pycodestyle has been updated to >= 2.12.0, < 2.13.0 (See also :pull:`1939`).

.. all links
.. _7.1.0 milestone:
https://github.com/PyCQA/flake8/milestone/50
1 change: 1 addition & 0 deletions docs/source/release-notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ with the newest releases first.

.. toctree::
7.0.0
7.1.0

6.x Release Series
==================
Expand Down
2 changes: 1 addition & 1 deletion src/flake8/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler())

__version__ = "7.0.0"
__version__ = "7.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 65a38c4

Please sign in to comment.