mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-12 07:44:16 +00:00
Release 4.0.1
This commit is contained in:
parent
0fac346d84
commit
cbeb4c9c41
3 changed files with 17 additions and 1 deletions
15
docs/source/release-notes/4.0.1.rst
Normal file
15
docs/source/release-notes/4.0.1.rst
Normal 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
|
||||||
|
|
@ -9,6 +9,7 @@ with the newest releases first.
|
||||||
==================
|
==================
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
|
4.0.1
|
||||||
4.0.0
|
4.0.0
|
||||||
|
|
||||||
3.x Release Series
|
3.x Release Series
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ from typing import Type
|
||||||
LOG = logging.getLogger(__name__)
|
LOG = logging.getLogger(__name__)
|
||||||
LOG.addHandler(logging.NullHandler())
|
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())
|
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue