Skip to content

Commit b9a7794

Browse files
committed
Release 6.0.0
1 parent b5cac87 commit b9a7794

File tree

4 files changed

+44
-3
lines changed

4 files changed

+44
-3
lines changed

docs/source/internal/releases.rst

+2-2
Original file line numberDiff line numberDiff 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

docs/source/release-notes/6.0.0.rst

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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

docs/source/release-notes/index.rst

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
All of the release notes that have been recorded for Flake8 are organized here
66
with the newest releases first.
77

8+
6.x Release Series
9+
==================
10+
11+
.. toctree::
12+
6.0.0
13+
814
5.x Release Series
915
==================
1016

src/flake8/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
LOG = logging.getLogger(__name__)
1818
LOG.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 = {

0 commit comments

Comments
 (0)