Release 3.8.0

This commit is contained in:
Anthony Sottile 2020-05-11 13:42:09 -07:00
parent 03c7dd3a8d
commit b4d2850192
2 changed files with 34 additions and 1 deletions

View file

@ -1,3 +1,24 @@
3.8.0 -- 2020-05-11
-------------------
You can view the `3.8.0 milestone`_ on GitLab for more details.
Bugs Fixed
~~~~~~~~~~
- Fix logical checks which report positions out of bounds (See also
`GitLab!422`_, `GitLab#635`_)
- Fix ``--exclude=.*`` accidentally matching ``.`` and ``..`` (See also
`GitLab!424`_, `GitLab#632`_)
Deprecations
~~~~~~~~~~~~
- Add deprecation message for vcs hooks (See also `GitLab!420`_,
`GitLab#568`_)
3.8.0a2 -- 2020-04-24
---------------------
@ -134,6 +155,8 @@ Deprecations
https://gitlab.com/pycqa/flake8/-/issues/563
.. _GitLab#565:
https://gitlab.com/pycqa/flake8/-/issues/565
.. _GitLab#568:
https://gitlab.com/pycqa/flake8/-/issues/568
.. _GitLab#569:
https://gitlab.com/pycqa/flake8/-/issues/569
.. _GitLab#587:
@ -142,6 +165,10 @@ Deprecations
https://gitlab.com/pycqa/flake8/-/issues/590
.. _GitLab#600:
https://gitlab.com/pycqa/flake8/-/issues/600
.. _GitLab#632:
https://gitlab.com/pycqa/flake8/-/issues/632
.. _GitLab#635:
https://gitlab.com/pycqa/flake8/-/issues/635
.. _pycodestyle#886:
https://github.com/PyCQA/pycodestyle/issues/886
@ -190,3 +217,9 @@ Deprecations
https://gitlab.com/pycqa/flake8/-/merge_requests/418
.. _GitLab!419:
https://gitlab.com/pycqa/flake8/-/merge_requests/419
.. _GitLab!420:
https://gitlab.com/pycqa/flake8/-/merge_requests/420
.. _GitLab!422:
https://gitlab.com/pycqa/flake8/-/merge_requests/422
.. _GitLab!424:
https://gitlab.com/pycqa/flake8/-/merge_requests/424

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.8.0a2"
__version__ = "3.8.0"
__version_info__ = tuple(
int(i) for i in __version__.split(".") if i.isdigit()
)