File tree Expand file tree Collapse file tree
docs/source/release-notes Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ 5.0.2 -- 2022-08-01
2+ -------------------
3+
4+ You can view the `5.0.2 milestone `_ on GitHub for more details.
5+
6+ Bugs Fixed
7+ ~~~~~~~~~~
8+
9+ - Fix execution on python == 3.8.0 (See also :issue: `1637 `, :pull: `1641 `).
10+ - Fix config discovery when home does not exist (See also :issue: `1640 `,
11+ :pull: `1642 `).
12+
13+
14+ .. all links
15+ .. _5.0.2 milestone :
16+ https://github.com/PyCQA/flake8/milestone/44
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ with the newest releases first.
99==================
1010
1111.. toctree ::
12+ 5.0.2
1213 5.0.1
1314 5.0.0
1415
Original file line number Diff line number Diff line change 1717LOG = logging .getLogger (__name__ )
1818LOG .addHandler (logging .NullHandler ())
1919
20- __version__ = "5.0.1 "
20+ __version__ = "5.0.2 "
2121__version_info__ = tuple (int (i ) for i in __version__ .split ("." ) if i .isdigit ())
2222
2323_VERBOSITY_TO_LOG_LEVEL = {
You can’t perform that action at this time.
0 commit comments