Skip to content

Commit

Permalink
Release 7.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Aug 4, 2024
1 parent 939ea3d commit cf1542c
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/7.1.1.rst
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions docs/source/release-notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ with the newest releases first.
.. toctree::
7.0.0
7.1.0
7.1.1

6.x Release Series
==================
Expand Down
2 changes: 1 addition & 1 deletion src/flake8/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
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 = {
Expand Down

0 comments on commit cf1542c

Please sign in to comment.