Release 3.7.1

This commit is contained in:
Anthony Sottile 2019-01-30 00:07:43 -08:00
parent ed3b133227
commit f70ae10c2b
3 changed files with 24 additions and 1 deletions

View 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

View file

@ -9,6 +9,7 @@ with the newest releases first.
==================
.. toctree::
3.7.1
3.7.0
3.6.0
3.5.0

View file

@ -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()
)