Release 3.7.8

This commit is contained in:
Anthony Sottile 2019-07-08 11:21:04 -07:00
parent f41e87bf37
commit aa792d2930
3 changed files with 43 additions and 1 deletions

View file

@ -0,0 +1,41 @@
3.7.8 -- 2019-07-08
-------------------
You can view the `3.7.8 milestone`_ on GitLab for more details.
Bugs Fixed
~~~~~~~~~~
- Fix handling of ``Application.parse_preliminary_options_and_args`` when
argv is an empty list (See also `GitLab!310`_, `GitLab#518`_)
- Fix crash when a file parses but fails to tokenize (See also `GitLab!314`_,
`GitLab#532`_)
- Log the full traceback on plugin exceptions (See also `GitLab!317`_)
- Fix ``# noqa: ...`` comments with multi-letter codes (See also `GitLab!326`_,
`GitLab#549`_)
.. all links
.. _3.7.8 milestone:
https://gitlab.com/pycqa/flake8/milestones/31
.. issue links
.. _GitLab#518:
https://gitlab.com/pycqa/flake8/issues/518
.. _GitLab#532:
https://gitlab.com/pycqa/flake8/issues/532
.. _GitLab#549:
https://gitlab.com/pycqa/flake8/issues/549
.. merge request links
.. _GitLab!310:
https://gitlab.com/pycqa/flake8/merge_requests/310
.. _GitLab!314:
https://gitlab.com/pycqa/flake8/merge_requests/314
.. _GitLab!317:
https://gitlab.com/pycqa/flake8/merge_requests/317
.. _GitLab!326:
https://gitlab.com/pycqa/flake8/merge_requests/326

View file

@ -9,6 +9,7 @@ with the newest releases first.
==================
.. toctree::
3.7.8
3.7.7
3.7.6
3.7.5

View file

@ -18,7 +18,7 @@ if False: # `typing.TYPE_CHECKING` was introduced in 3.5.2
LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler())
__version__ = "3.7.7"
__version__ = "3.7.8"
__version_info__ = tuple(
int(i) for i in __version__.split(".") if i.isdigit()
)