mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-12 23:54:17 +00:00
Release 7.1.1
This commit is contained in:
parent
939ea3d8d9
commit
cf1542cefa
3 changed files with 17 additions and 1 deletions
15
docs/source/release-notes/7.1.1.rst
Normal file
15
docs/source/release-notes/7.1.1.rst
Normal 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
|
||||||
|
|
@ -11,6 +11,7 @@ with the newest releases first.
|
||||||
.. toctree::
|
.. toctree::
|
||||||
7.0.0
|
7.0.0
|
||||||
7.1.0
|
7.1.0
|
||||||
|
7.1.1
|
||||||
|
|
||||||
6.x Release Series
|
6.x Release Series
|
||||||
==================
|
==================
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ import sys
|
||||||
LOG = logging.getLogger(__name__)
|
LOG = logging.getLogger(__name__)
|
||||||
LOG.addHandler(logging.NullHandler())
|
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())
|
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())
|
||||||
|
|
||||||
_VERBOSITY_TO_LOG_LEVEL = {
|
_VERBOSITY_TO_LOG_LEVEL = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue