diff options
| author | Anthony Sottile <asottile@umich.edu> | 2019-07-08 11:21:04 -0700 |
|---|---|---|
| committer | Anthony Sottile <asottile@umich.edu> | 2019-07-08 11:21:04 -0700 |
| commit | aa792d2930b8f6dada3f6305e8a3704d2d191005 (patch) | |
| tree | ed2341f70ca7b31d2bdc104641d0ff10cb3937dc | |
| parent | f41e87bf375e5b7b6452f6ec353543fde5a3d653 (diff) | |
| download | flake8-aa792d2930b8f6dada3f6305e8a3704d2d191005.tar.gz | |
Release 3.7.83.7.8
| -rw-r--r-- | docs/source/release-notes/3.7.8.rst | 41 | ||||
| -rw-r--r-- | docs/source/release-notes/index.rst | 1 | ||||
| -rw-r--r-- | src/flake8/__init__.py | 2 |
3 files changed, 43 insertions, 1 deletions
diff --git a/docs/source/release-notes/3.7.8.rst b/docs/source/release-notes/3.7.8.rst new file mode 100644 index 0000000..40478a2 --- /dev/null +++ b/docs/source/release-notes/3.7.8.rst @@ -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 diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst index 4a206b9..96aa184 100644 --- a/docs/source/release-notes/index.rst +++ b/docs/source/release-notes/index.rst @@ -9,6 +9,7 @@ with the newest releases first. ================== .. toctree:: + 3.7.8 3.7.7 3.7.6 3.7.5 diff --git a/src/flake8/__init__.py b/src/flake8/__init__.py index 8394276..f370ffb 100644 --- a/src/flake8/__init__.py +++ b/src/flake8/__init__.py @@ -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() ) |
