mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-02 19:56:52 +00:00
Release 3.7.7
This commit is contained in:
parent
a0c9a4240d
commit
88caf5ac48
3 changed files with 25 additions and 1 deletions
23
docs/source/release-notes/3.7.7.rst
Normal file
23
docs/source/release-notes/3.7.7.rst
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
3.7.7 -- 2019-02-25
|
||||
-------------------
|
||||
|
||||
You can view the `3.7.7 milestone`_ on GitLab for more details.
|
||||
|
||||
Bugs Fixed
|
||||
~~~~~~~~~~
|
||||
|
||||
- Fix crahes in plugins causing ``flake8`` to hang while unpickling errors (See
|
||||
also `GitLab!308`_, `GitLab#505`_)
|
||||
|
||||
|
||||
.. all links
|
||||
.. _3.7.7 milestone:
|
||||
https://gitlab.com/pycqa/flake8/milestones/30
|
||||
|
||||
.. issue links
|
||||
.. _GitLab#505:
|
||||
https://gitlab.com/pycqa/flake8/issues/505
|
||||
|
||||
.. merge request links
|
||||
.. _GitLab!308:
|
||||
https://gitlab.com/pycqa/flake8/merge_requests/308
|
||||
|
|
@ -9,6 +9,7 @@ with the newest releases first.
|
|||
==================
|
||||
|
||||
.. toctree::
|
||||
3.7.7
|
||||
3.7.6
|
||||
3.7.5
|
||||
3.7.4
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ import sys
|
|||
LOG = logging.getLogger(__name__)
|
||||
LOG.addHandler(logging.NullHandler())
|
||||
|
||||
__version__ = "3.7.6"
|
||||
__version__ = "3.7.7"
|
||||
__version_info__ = tuple(
|
||||
int(i) for i in __version__.split(".") if i.isdigit()
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue