mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-14 08:24:46 +00:00
Release 3.7.2
This commit is contained in:
parent
077b640a86
commit
3d1a4265a7
3 changed files with 38 additions and 1 deletions
36
docs/source/release-notes/3.7.2.rst
Normal file
36
docs/source/release-notes/3.7.2.rst
Normal file
|
|
@ -0,0 +1,36 @@
|
||||||
|
3.7.1 -- 2019-01-30
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
You can view the `3.7.2 milestone`_ on GitLab for more details.
|
||||||
|
|
||||||
|
Bugs Fixed
|
||||||
|
~~~~~~~~~~
|
||||||
|
|
||||||
|
- Fix broken ``flake8 --diff`` (regressed in 3.7.0) (See also `GitLab!292`_,
|
||||||
|
`GitLab#490`_)
|
||||||
|
|
||||||
|
- Fix typo in plugin exception reporting (See also `GitLab!275`_,
|
||||||
|
`GitLab#491`_)
|
||||||
|
|
||||||
|
- Fix ``AttributeError`` while attempting to use the legacy api (regressed in
|
||||||
|
3.7.0) (See also `GitLab!293`_, `GitLab#497`_)
|
||||||
|
|
||||||
|
.. all links
|
||||||
|
.. _3.7.2 milestone:
|
||||||
|
https://gitlab.com/pycqa/flake8/milestones/25
|
||||||
|
|
||||||
|
.. issue links
|
||||||
|
.. _GitLab#490:
|
||||||
|
https://gitlab.com/pycqa/flake8/issues/490
|
||||||
|
.. _GitLab#491:
|
||||||
|
https://gitlab.com/pycqa/flake8/issues/491
|
||||||
|
.. _GitLab#497:
|
||||||
|
https://gitlab.com/pycqa/flake8/issues/497
|
||||||
|
|
||||||
|
.. merge request links
|
||||||
|
.. _GitLab!292:
|
||||||
|
https://gitlab.com/pycqa/flake8/merge_requests/292
|
||||||
|
.. _GitLab!275:
|
||||||
|
https://gitlab.com/pycqa/flake8/merge_requests/275
|
||||||
|
.. _GitLab!293:
|
||||||
|
https://gitlab.com/pycqa/flake8/merge_requests/293
|
||||||
|
|
@ -9,6 +9,7 @@ with the newest releases first.
|
||||||
==================
|
==================
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
|
3.7.2
|
||||||
3.7.1
|
3.7.1
|
||||||
3.7.0
|
3.7.0
|
||||||
3.6.0
|
3.6.0
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ import sys
|
||||||
LOG = logging.getLogger(__name__)
|
LOG = logging.getLogger(__name__)
|
||||||
LOG.addHandler(logging.NullHandler())
|
LOG.addHandler(logging.NullHandler())
|
||||||
|
|
||||||
__version__ = "3.7.1"
|
__version__ = "3.7.2"
|
||||||
__version_info__ = tuple(
|
__version_info__ = tuple(
|
||||||
int(i) for i in __version__.split(".") if i.isdigit()
|
int(i) for i in __version__.split(".") if i.isdigit()
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue