Skip to content

Commit

Permalink
Release 4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Oct 11, 2021
1 parent 0fac346 commit 82b698e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
15 changes: 15 additions & 0 deletions docs/source/release-notes/4.0.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
4.0.1 -- 2021-10-11
-------------------

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

Bugs Fixed
~~~~~~~~~~

- Fix parallel execution collecting a ``SyntaxError`` (See also :pull:`1410`
:issue:`1408`).


.. all links
.. _4.0.1 milestone:
https://github.com/PyCQA/flake8/milestone/41
1 change: 1 addition & 0 deletions docs/source/release-notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ with the newest releases first.
==================

.. toctree::
4.0.1
4.0.0

3.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 @@ -16,7 +16,7 @@
LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler())

__version__ = "4.0.0"
__version__ = "4.0.1"
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())


Expand Down

0 comments on commit 82b698e

Please sign in to comment.