mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-03 03:56:52 +00:00
Release 3.7.6
This commit is contained in:
parent
59c2f093de
commit
9b770f590e
3 changed files with 29 additions and 1 deletions
27
docs/source/release-notes/3.7.6.rst
Normal file
27
docs/source/release-notes/3.7.6.rst
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
3.7.6 -- 2019-02-18
|
||||
-------------------
|
||||
|
||||
You can view the `3.7.6 milestone`_ on GitLab for more details.
|
||||
|
||||
Bugs Fixed
|
||||
~~~~~~~~~~
|
||||
|
||||
- Fix ``--per-file-ignores`` for multi-letter error codes (See also
|
||||
`GitLab!303`_, `GitLab#507`_)
|
||||
|
||||
- Improve flake8 speed when only 1 filename is passed (See also `GitLab!305`_)
|
||||
|
||||
|
||||
.. all links
|
||||
.. _3.7.6 milestone:
|
||||
https://gitlab.com/pycqa/flake8/milestones/29
|
||||
|
||||
.. issue links
|
||||
.. _GitLab#507:
|
||||
https://gitlab.com/pycqa/flake8/issues/507
|
||||
|
||||
.. merge request links
|
||||
.. _GitLab!303:
|
||||
https://gitlab.com/pycqa/flake8/merge_requests/303
|
||||
.. _GitLab!305:
|
||||
https://gitlab.com/pycqa/flake8/merge_requests/305
|
||||
|
|
@ -9,6 +9,7 @@ with the newest releases first.
|
|||
==================
|
||||
|
||||
.. toctree::
|
||||
3.7.6
|
||||
3.7.5
|
||||
3.7.4
|
||||
3.7.3
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ import sys
|
|||
LOG = logging.getLogger(__name__)
|
||||
LOG.addHandler(logging.NullHandler())
|
||||
|
||||
__version__ = "3.7.5"
|
||||
__version__ = "3.7.6"
|
||||
__version_info__ = tuple(
|
||||
int(i) for i in __version__.split(".") if i.isdigit()
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue