Release 4.0.1

This commit is contained in:
Anthony Sottile 2021-10-11 05:41:53 -07:00
parent 0fac346d84
commit cbeb4c9c41
3 changed files with 17 additions and 1 deletions

View file

@ -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

View file

@ -9,6 +9,7 @@ with the newest releases first.
==================
.. toctree::
4.0.1
4.0.0
3.x Release Series

View file

@ -16,7 +16,7 @@ from typing import Type
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())