Skip to content

Commit cf1542c

Browse files
committed
Release 7.1.1
1 parent 939ea3d commit cf1542c

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

docs/source/release-notes/7.1.1.rst

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
7.1.1 -- 2024-08-04
2+
-------------------
3+
4+
You can view the `7.1.1 milestone`_ on GitHub for more details.
5+
6+
Bugs Fixed
7+
~~~~~~~~~~
8+
9+
- Properly preserve escaped `{` and `}` in fstrings in logical lines in 3.12+.
10+
(See also :issue:`1948`, :pull:`1949`).
11+
12+
13+
.. all links
14+
.. _7.1.1 milestone:
15+
https://github.com/PyCQA/flake8/milestone/51

docs/source/release-notes/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ with the newest releases first.
1111
.. toctree::
1212
7.0.0
1313
7.1.0
14+
7.1.1
1415

1516
6.x Release Series
1617
==================

src/flake8/__init__.py

+1-1
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__ = "7.1.0"
20+
__version__ = "7.1.1"
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)