Skip to content

Commit f7bda92

Browse files
committed
Release 3.9.1
1 parent e3313e0 commit f7bda92

File tree

4 files changed

+23
-1
lines changed

4 files changed

+23
-1
lines changed

docs/source/conf.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
extensions = [
3232
'sphinx.ext.autodoc',
3333
'sphinx.ext.doctest',
34+
'sphinx.ext.extlinks',
3435
'sphinx.ext.intersphinx',
3536
'sphinx.ext.todo',
3637
'sphinx.ext.coverage',
@@ -298,3 +299,8 @@
298299

299300
# Example configuration for intersphinx: refer to the Python standard library.
300301
intersphinx_mapping = {'python': ('https://docs.python.org/3/', None)}
302+
303+
extlinks = {
304+
"issue": ("https://github.com/pycqa/flake8/issues/%s", "#"),
305+
"pull": ("https://github.com/pycqa/flake8/pull/%s", "#"),
306+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
3.9.1 -- 2021-04-15
2+
-------------------
3+
4+
You can view the `3.9.1 milestone`_ on GitHub for more details.
5+
6+
Bugs Fixed
7+
~~~~~~~~~~
8+
9+
- Fix codes being ignored by plugins utilizing ``extend_default_ignore`` (See
10+
also :pull:`1317`)
11+
12+
13+
.. all links
14+
.. _3.9.1 milestone:
15+
https://github.com/PyCQA/flake8/milestone/38

docs/source/release-notes/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ with the newest releases first.
99
==================
1010

1111
.. toctree::
12+
3.9.1
1213
3.9.0
1314
3.8.4
1415
3.8.3

src/flake8/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
LOG = logging.getLogger(__name__)
1919
LOG.addHandler(logging.NullHandler())
2020

21-
__version__ = "3.9.0"
21+
__version__ = "3.9.1"
2222
__version_info__ = tuple(
2323
int(i) for i in __version__.split(".") if i.isdigit()
2424
)

0 commit comments

Comments
 (0)