File tree 3 files changed +17
-1
lines changed
docs/source/release-notes
3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
1
+ 7.1.2 -- 2025-02-16
2
+ -------------------
3
+
4
+ You can view the `7.1.2 milestone `_ on GitHub for more details.
5
+
6
+ Bugs Fixed
7
+ ~~~~~~~~~~
8
+
9
+ - Avoid starting unnecessary processes when "# files" < "jobs".
10
+ (See also :pull: `1966 `).
11
+
12
+
13
+ .. all links
14
+ .. _7.1.2 milestone :
15
+ https://github.com/PyCQA/flake8/milestone/52
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ with the newest releases first.
12
12
7.0.0
13
13
7.1.0
14
14
7.1.1
15
+ 7.1.2
15
16
16
17
6.x Release Series
17
18
==================
Original file line number Diff line number Diff line change 17
17
LOG = logging .getLogger (__name__ )
18
18
LOG .addHandler (logging .NullHandler ())
19
19
20
- __version__ = "7.1.1 "
20
+ __version__ = "7.1.2 "
21
21
__version_info__ = tuple (int (i ) for i in __version__ .split ("." ) if i .isdigit ())
22
22
23
23
_VERBOSITY_TO_LOG_LEVEL = {
You can’t perform that action at this time.
0 commit comments