mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-03 11:56:52 +00:00
Release 3.7.1
This commit is contained in:
parent
ed3b133227
commit
f70ae10c2b
3 changed files with 24 additions and 1 deletions
22
docs/source/release-notes/3.7.1.rst
Normal file
22
docs/source/release-notes/3.7.1.rst
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
3.7.1 -- 2019-01-30
|
||||
-------------------
|
||||
|
||||
You can view the `3.7.1 milestone`_ on GitLab for more details.
|
||||
|
||||
Bugs Fixed
|
||||
~~~~~~~~~~
|
||||
|
||||
- Fix capitalized filenames in ``per-file-ignores`` setting (See also
|
||||
`GitLab!290`_, `GitLab#488`_)
|
||||
|
||||
.. all links
|
||||
.. _3.7.1 milestone:
|
||||
https://gitlab.com/pycqa/flake8/milestones/24
|
||||
|
||||
.. issue links
|
||||
.. _GitLab#488:
|
||||
https://gitlab.com/pycqa/flake8/issues/488
|
||||
|
||||
.. merge request links
|
||||
.. _GitLab!290:
|
||||
https://gitlab.com/pycqa/flake8/merge_requests/290
|
||||
|
|
@ -9,6 +9,7 @@ with the newest releases first.
|
|||
==================
|
||||
|
||||
.. toctree::
|
||||
3.7.1
|
||||
3.7.0
|
||||
3.6.0
|
||||
3.5.0
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ import sys
|
|||
LOG = logging.getLogger(__name__)
|
||||
LOG.addHandler(logging.NullHandler())
|
||||
|
||||
__version__ = "3.7.0"
|
||||
__version__ = "3.7.1"
|
||||
__version_info__ = tuple(
|
||||
int(i) for i in __version__.split(".") if i.isdigit()
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue