Release 7.1.0
Автор
Anthony Sottile

Коммитер
Anthony Sottile
год назад 
Файлов изменено: 3
+15
–1
65a38c4
docs/source/.../7.1.0.rst
0 100644
+13
–0
@@ -0,0 +1,13 @@ | ||
7.1.0 -- 2024-06-15 | ||
------------------- | ||
You can view the `7.1.0 milestone`_ on GitHub for more details. | ||
New Dependency Information | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
- pycodestyle has been updated to >= 2.12.0, < 2.13.0 (See also :pull:`1939`). | ||
.. all links | ||
.. _7.1.0 milestone: | ||
https://github.com/PyCQA/flake8/milestone/50 |
docs/source/.../index.rst
+1
–0
@@ -10,6 +10,7 @@ | ||
.. toctree:: | ||
7.0.0 | ||
7.1.0 | ||
6.x Release Series | ||
================== |
src/flake8/__init__.py
+1
–1
@@ -17,7 +17,7 @@ | ||
LOG = logging.getLogger(__name__) | ||
LOG.addHandler(logging.NullHandler()) | ||
__version__ = "7.0.0" | ||
__version__ = "7.1.0" | ||
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit()) | ||
_VERBOSITY_TO_LOG_LEVEL = { |
Cherry-pick
Команда cherry-pick позволяет выбрать отдельные коммиты из одной ветки и применить их к другой.