File tree 4 files changed +44
-3
lines changed
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:
28
28
29
29
- Unvendoring dependencies (2.0)
30
30
31
- - Large scale refactoring (2.0, 3.0, 5.0)
31
+ - Large scale refactoring (2.0, 3.0, 5.0, 6.0 )
32
32
33
- - Subtly breaking CLI changes (3.0, 4.0, 5.0)
33
+ - Subtly breaking CLI changes (3.0, 4.0, 5.0, 6.0 )
34
34
35
35
- Breaking changes to its plugin interface (3.0)
36
36
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 5
5
All of the release notes that have been recorded for Flake8 are organized here
6
6
with the newest releases first.
7
7
8
+ 6.x Release Series
9
+ ==================
10
+
11
+ .. toctree ::
12
+ 6.0.0
13
+
8
14
5.x Release Series
9
15
==================
10
16
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__ = "5 .0.4 "
20
+ __version__ = "6 .0.0 "
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