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
+ 4.0.1 -- 2021-10-11
2
+ -------------------
3
+
4
+ You can view the `4.0.1 milestone `_ on GitHub for more details.
5
+
6
+ Bugs Fixed
7
+ ~~~~~~~~~~
8
+
9
+ - Fix parallel execution collecting a ``SyntaxError `` (See also :pull: `1410 `
10
+ :issue: `1408 `).
11
+
12
+
13
+ .. all links
14
+ .. _4.0.1 milestone :
15
+ https://github.com/PyCQA/flake8/milestone/41
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ with the newest releases first.
9
9
==================
10
10
11
11
.. toctree ::
12
+ 4.0.1
12
13
4.0.0
13
14
14
15
3.x Release Series
Original file line number Diff line number Diff line change 16
16
LOG = logging .getLogger (__name__ )
17
17
LOG .addHandler (logging .NullHandler ())
18
18
19
- __version__ = "4.0.0 "
19
+ __version__ = "4.0.1 "
20
20
__version_info__ = tuple (int (i ) for i in __version__ .split ("." ) if i .isdigit ())
21
21
22
22
You can’t perform that action at this time.
0 commit comments