Skip to content

Commit 88a4f9b

Browse files
committed
Release 7.0.0
1 parent 6f3a60d commit 88a4f9b

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

Diff for: docs/source/internal/releases.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Historically, |Flake8| has generated major releases for:
3030

3131
- Large scale refactoring (2.0, 3.0, 5.0, 6.0)
3232

33-
- Subtly breaking CLI changes (3.0, 4.0, 5.0, 6.0)
33+
- Subtly breaking CLI changes (3.0, 4.0, 5.0, 6.0, 7.0)
3434

3535
- Breaking changes to its plugin interface (3.0)
3636

Diff for: docs/source/release-notes/7.0.0.rst

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
7.0.0 -- 2024-01-04
2+
-------------------
3+
4+
You can view the `7.0.0 milestone`_ on GitHub for more details.
5+
6+
Backwards Incompatible Changes
7+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
8+
9+
- Remove ``--include-in-doctest`` and ``--exclude-from-doctest`` options.
10+
(See also :issue:`1747`, :pull:`1854`)
11+
12+
New Dependency Information
13+
~~~~~~~~~~~~~~~~~~~~~~~~~~
14+
15+
- Pyflakes has been updated to >= 3.2.0, < 3.3.0 (See also :pull:`1906`).
16+
17+
.. all links
18+
.. _7.0.0 milestone:
19+
https://github.com/PyCQA/flake8/milestone/49

Diff for: 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+
7.x Release Series
9+
==================
10+
11+
.. toctree::
12+
7.0.0
13+
814
6.x Release Series
915
==================
1016

Diff for: 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__ = "6.1.0"
20+
__version__ = "7.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)