Skip to content

Commit

Permalink
Release 5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Jul 31, 2022
1 parent d20bb97 commit 405cfe0
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/5.0.1.rst
@@ -0,0 +1,15 @@
5.0.1 -- 2022-07-31
-------------------

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

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

- Fix duplicate plugin discovery on misconfigured pythons (See also
:issue:`1627`, :pull:`1631`).


.. all links
.. _5.0.1 milestone:
https://github.com/PyCQA/flake8/milestone/43
1 change: 1 addition & 0 deletions docs/source/release-notes/index.rst
Expand Up @@ -10,6 +10,7 @@ with the newest releases first.

.. toctree::
5.0.0
5.0.1

4.x Release Series
==================
Expand Down
2 changes: 1 addition & 1 deletion src/flake8/__init__.py
Expand Up @@ -17,7 +17,7 @@
LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler())

__version__ = "5.0.0"
__version__ = "5.0.1"
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())

_VERBOSITY_TO_LOG_LEVEL = {
Expand Down

0 comments on commit 405cfe0

Please sign in to comment.