mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 10:36:53 +00:00
Release 3.9.1
-----BEGIN PGP SIGNATURE----- iQJHBAABCgAxFiEEzx3RsDHdsD/grSXv6HufUSpyIFEFAmB5CUkTHGFzb3R0aWxl QHVtaWNoLmVkdQAKCRDoe59RKnIgUQQuD/9ByVAa8QV9H1P8ExNnOF/D4nq7Xm0j NFRduVVHrGxIoMdoWu+4DmAjYABdRv/JPw7LXtUPC2oufG3On/EZWMsXN20rd7NI 6TfhBLbitwVvHfN4PfQ2II+z3Pom5QKZ8/FTs+ku+SvCBhumgdsJNxw+Ti/+mvU9 AhhbpRC7XIlYvvNxCs85xjZ8B5ARHoEoFmaaT90q8K8R9V0TjnxcIM5Y8lloAJBR qiTt0otmzw4DbeI3jO9KJVm2ojIOHnYpmt4kh/EiZDSYgx9z42AS8jtLWuEb39// JpbdJy8/Oviv55jIWyGY9/B+NpGigEpzbf2pSiXdgEpYyacXHewUNcTf9NEvoIfY pa0W5OVjN5ClFPCFsToZrhNq8MwUh8TafX7aXBdGoGTaSiP55VQuSwyxmiiyKrQm DnUQUzQ+AVL7dobxD72ui3AdvbfDevZcpGAMhdpvohowoWX4SQb1Rd6mG2anFNGl QHiPZkI86wDhoFatYUu9CyLvP1dV/bwCjhFll62YWrUQ+cmkgT+2dZHObn8csc5I IsEGf023Tc+KL/B9RHGlrYo3JJoNhvs/Jjt7Jnm3aFV+G2pT8nJ9wqxL9Z+uAWqw /1oyaOHmdS2RLPdr96S4C+DbP8weRBwUQjdbIHuXnlYHi6LSkFPGeVVU23mjRWyF 5BaR4uyF9cl2zQ== =eMit -----END PGP SIGNATURE----- Merge tag '3.9.1' Release 3.9.1
This commit is contained in:
commit
a7174759e9
3 changed files with 17 additions and 1 deletions
15
docs/source/release-notes/3.9.1.rst
Normal file
15
docs/source/release-notes/3.9.1.rst
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
3.9.1 -- 2021-04-15
|
||||
-------------------
|
||||
|
||||
You can view the `3.9.1 milestone`_ on GitHub for more details.
|
||||
|
||||
Bugs Fixed
|
||||
~~~~~~~~~~
|
||||
|
||||
- Fix codes being ignored by plugins utilizing ``extend_default_ignore`` (See
|
||||
also :pull:`1317`)
|
||||
|
||||
|
||||
.. all links
|
||||
.. _3.9.1 milestone:
|
||||
https://github.com/PyCQA/flake8/milestone/38
|
||||
|
|
@ -9,6 +9,7 @@ with the newest releases first.
|
|||
==================
|
||||
|
||||
.. toctree::
|
||||
3.9.1
|
||||
3.9.0
|
||||
3.8.4
|
||||
3.8.3
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ from typing import Type
|
|||
LOG = logging.getLogger(__name__)
|
||||
LOG.addHandler(logging.NullHandler())
|
||||
|
||||
__version__ = "3.9.0"
|
||||
__version__ = "3.9.1"
|
||||
__version_info__ = tuple(
|
||||
int(i) for i in __version__.split(".") if i.isdigit()
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue