Skip to content

Commit 6027577

Browse files
committed
Release 5.0.4
1 parent 213e006 commit 6027577

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

docs/source/release-notes/5.0.4.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
5.0.4 -- 2022-08-03
2+
-------------------
3+
4+
You can view the `5.0.4 milestone`_ on GitHub for more details.
5+
6+
Bugs Fixed
7+
~~~~~~~~~~
8+
9+
- Set a lower bound on ``importlib-metadata`` to prevent ``RecursionError``
10+
(See also :issue:`1650`, :pull:`1653`).
11+
12+
13+
.. all links
14+
.. _5.0.4 milestone:
15+
https://github.com/PyCQA/flake8/milestone/46

docs/source/release-notes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ with the newest releases first.
99
==================
1010

1111
.. toctree::
12+
5.0.4
1213
5.0.3
1314
5.0.2
1415
5.0.1

src/flake8/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
LOG = logging.getLogger(__name__)
1818
LOG.addHandler(logging.NullHandler())
1919

20-
__version__ = "5.0.3"
20+
__version__ = "5.0.4"
2121
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())
2222

2323
_VERBOSITY_TO_LOG_LEVEL = {

0 commit comments

Comments
 (0)