Skip to content

Commit

Permalink
Release 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Jan 5, 2024
1 parent 6f3a60d commit 88a4f9b
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/source/internal/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Historically, |Flake8| has generated major releases for:

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

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

- Breaking changes to its plugin interface (3.0)

Expand Down
19 changes: 19 additions & 0 deletions docs/source/release-notes/7.0.0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
7.0.0 -- 2024-01-04
-------------------

You can view the `7.0.0 milestone`_ on GitHub for more details.

Backwards Incompatible Changes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- Remove ``--include-in-doctest`` and ``--exclude-from-doctest`` options.
(See also :issue:`1747`, :pull:`1854`)

New Dependency Information
~~~~~~~~~~~~~~~~~~~~~~~~~~

- Pyflakes has been updated to >= 3.2.0, < 3.3.0 (See also :pull:`1906`).

.. all links
.. _7.0.0 milestone:
https://github.com/PyCQA/flake8/milestone/49
6 changes: 6 additions & 0 deletions docs/source/release-notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
All of the release notes that have been recorded for Flake8 are organized here
with the newest releases first.

7.x Release Series
==================

.. toctree::
7.0.0

6.x Release Series
==================

Expand Down
2 changes: 1 addition & 1 deletion src/flake8/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler())

__version__ = "6.1.0"
__version__ = "7.0.0"
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())

_VERBOSITY_TO_LOG_LEVEL = {
Expand Down

0 comments on commit 88a4f9b

Please sign in to comment.