mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-11 15:24:18 +00:00
Release 3.8.0a2
This commit is contained in:
parent
6f28112957
commit
0cdc1b9efe
2 changed files with 15 additions and 2 deletions
|
|
@ -1,4 +1,15 @@
|
||||||
3.8.0a1 -- 2020-04-23
|
3.8.0a2 -- 2020-04-24
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
You can view the `3.8.0 milestone`_ on GitLab for more details.
|
||||||
|
|
||||||
|
Bugs Fixed
|
||||||
|
~~~~~~~~~~
|
||||||
|
|
||||||
|
- Fix ``type="str"`` optparse options (See also `GitLab!419`_)
|
||||||
|
|
||||||
|
|
||||||
|
3.8.0a1 -- 2020-04-24
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
You can view the `3.8.0 milestone`_ on GitLab for more details.
|
You can view the `3.8.0 milestone`_ on GitLab for more details.
|
||||||
|
|
@ -177,3 +188,5 @@ Deprecations
|
||||||
https://gitlab.com/pycqa/flake8/-/merge_requests/417
|
https://gitlab.com/pycqa/flake8/-/merge_requests/417
|
||||||
.. _GitLab!418:
|
.. _GitLab!418:
|
||||||
https://gitlab.com/pycqa/flake8/-/merge_requests/418
|
https://gitlab.com/pycqa/flake8/-/merge_requests/418
|
||||||
|
.. _GitLab!419:
|
||||||
|
https://gitlab.com/pycqa/flake8/-/merge_requests/419
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ if False: # `typing.TYPE_CHECKING` was introduced in 3.5.2
|
||||||
LOG = logging.getLogger(__name__)
|
LOG = logging.getLogger(__name__)
|
||||||
LOG.addHandler(logging.NullHandler())
|
LOG.addHandler(logging.NullHandler())
|
||||||
|
|
||||||
__version__ = "3.8.0a1"
|
__version__ = "3.8.0a2"
|
||||||
__version_info__ = tuple(
|
__version_info__ = tuple(
|
||||||
int(i) for i in __version__.split(".") if i.isdigit()
|
int(i) for i in __version__.split(".") if i.isdigit()
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue