Release 3.7.5

This commit is contained in:
Anthony Sottile 2019-02-04 08:37:16 -08:00
parent a35ed4a998
commit e7b8493b5d
3 changed files with 25 additions and 1 deletions

View file

@ -0,0 +1,23 @@
3.7.5 -- 2019-02-04
-------------------
You can view the `3.7.5 milestone`_ on GitLab for more details.
Bugs Fixed
~~~~~~~~~~
- Fix reporting of pyflakes "referenced before assignment" error (See also
`GitLab!301`_, `GitLab#503`_)
.. all links
.. _3.7.5 milestone:
https://gitlab.com/pycqa/flake8/milestones/28
.. issue links
.. _GitLab#503:
https://gitlab.com/pycqa/flake8/issues/503
.. merge request links
.. _GitLab!301:
https://gitlab.com/pycqa/flake8/merge_requests/301

View file

@ -9,6 +9,7 @@ with the newest releases first.
==================
.. toctree::
3.7.5
3.7.4
3.7.3
3.7.2

View file

@ -15,7 +15,7 @@ import sys
LOG = logging.getLogger(__name__)
LOG.addHandler(logging.NullHandler())
__version__ = "3.7.4"
__version__ = "3.7.5"
__version_info__ = tuple(
int(i) for i in __version__.split(".") if i.isdigit()
)