Release 7.1.1

This commit is contained in:
Anthony Sottile 2024-08-04 16:31:56 -04:00
parent 939ea3d8d9
commit cf1542cefa
3 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,15 @@
7.1.1 -- 2024-08-04
-------------------
You can view the `7.1.1 milestone`_ on GitHub for more details.
Bugs Fixed
~~~~~~~~~~
- Properly preserve escaped `{` and `}` in fstrings in logical lines in 3.12+.
(See also :issue:`1948`, :pull:`1949`).
.. all links
.. _7.1.1 milestone:
https://github.com/PyCQA/flake8/milestone/51

View file

@ -11,6 +11,7 @@ with the newest releases first.
.. toctree::
7.0.0
7.1.0
7.1.1
6.x Release Series
==================

View file

@ -17,7 +17,7 @@ import sys
LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler())
__version__ = "7.1.0"
__version__ = "7.1.1"
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())
_VERBOSITY_TO_LOG_LEVEL = {