Skip to content

Commit

Permalink
Release 7.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Feb 16, 2025
1 parent 19001f7 commit fffee8b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
15 changes: 15 additions & 0 deletions docs/source/release-notes/7.1.2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
7.1.2 -- 2025-02-16
-------------------

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

Bugs Fixed
~~~~~~~~~~

- Avoid starting unnecessary processes when "# files" < "jobs".
(See also :pull:`1966`).


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

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.1.1"
__version__ = "7.1.2"
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())

_VERBOSITY_TO_LOG_LEVEL = {
Expand Down

0 comments on commit fffee8b

Please sign in to comment.