File tree Expand file tree Collapse file tree 4 files changed +44
-3
lines changed Expand file tree Collapse file tree 4 files changed +44
-3
lines changed Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ Historically, |Flake8| has generated major releases for:
2828
2929- Unvendoring dependencies (2.0)
3030
31- - Large scale refactoring (2.0, 3.0, 5.0)
31+ - Large scale refactoring (2.0, 3.0, 5.0, 6.0 )
3232
33- - Subtly breaking CLI changes (3.0, 4.0, 5.0)
33+ - Subtly breaking CLI changes (3.0, 4.0, 5.0, 6.0 )
3434
3535- Breaking changes to its plugin interface (3.0)
3636
Original file line number Diff line number Diff line change 1+ 6.0.0 -- 2022-11-23
2+ -------------------
3+
4+ You can view the `6.0.0 milestone `_ on GitHub for more details.
5+
6+ Backwards Incompatible Changes
7+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8+
9+ - Remove ``--diff `` option (See also :issue: `1389 `, :pull: `1720 `).
10+ - Produce an error when invalid codes are specified in configuration (See also
11+ :issue: `1689 `, :pull: `1713 `).
12+ - Produce an error if the file specified in ``--extend-config `` does not exist
13+ (See also :issue: `1729 `, :pull: `1732 `).
14+ - Remove ``optparse `` compatibility support (See also :pull: `1739 `).
15+
16+ New Dependency Information
17+ ~~~~~~~~~~~~~~~~~~~~~~~~~~
18+
19+ - pycodestyle has been updated to >= 2.10.0, < 2.11.0 (See also :pull: `1746 `).
20+ - Pyflakes has been updated to >= 3.0.0, < 3.1.0 (See also :pull: `1748 `).
21+
22+ Features
23+ ~~~~~~~~
24+
25+ - Require python >= 3.8.1 (See also :pull: `1633 `, :pull: `1741 `).
26+ - List available formatters in for ``--format `` option in ``--help `` (See also
27+ :issue: `223 `, :pull: `1624 `).
28+ - Improve multiprocessing performance (See also :pull: `1723 `).
29+ - Enable multiprocessing on non-fork platforms (See also :pull: `1723 `).
30+ - Ensure results are sorted when discovered from files (See also :issue: `1670 `,
31+ :pull: `1726 `).
32+
33+ .. all links
34+ .. _6.0.0 milestone :
35+ https://github.com/PyCQA/flake8/milestone/47
Original file line number Diff line number Diff line change 55All of the release notes that have been recorded for Flake8 are organized here
66with the newest releases first.
77
8+ 6.x Release Series
9+ ==================
10+
11+ .. toctree ::
12+ 6.0.0
13+
8145.x Release Series
915==================
1016
Original file line number Diff line number Diff line change 1717LOG = logging .getLogger (__name__ )
1818LOG .addHandler (logging .NullHandler ())
1919
20- __version__ = "5 .0.4 "
20+ __version__ = "6 .0.0 "
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