summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/source/conf.py6
-rw-r--r--docs/source/release-notes/3.9.1.rst15
-rw-r--r--docs/source/release-notes/index.rst1
3 files changed, 22 insertions, 0 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py
index dd2003f..8dfe578 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -31,6 +31,7 @@ needs_sphinx = '1.3'
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
+ 'sphinx.ext.extlinks',
'sphinx.ext.intersphinx',
'sphinx.ext.todo',
'sphinx.ext.coverage',
@@ -298,3 +299,8 @@ texinfo_documents = [
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'python': ('https://docs.python.org/3/', None)}
+
+extlinks = {
+ "issue": ("https://github.com/pycqa/flake8/issues/%s", "#"),
+ "pull": ("https://github.com/pycqa/flake8/pull/%s", "#"),
+}
diff --git a/docs/source/release-notes/3.9.1.rst b/docs/source/release-notes/3.9.1.rst
new file mode 100644
index 0000000..55bccdc
--- /dev/null
+++ b/docs/source/release-notes/3.9.1.rst
@@ -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
diff --git a/docs/source/release-notes/index.rst b/docs/source/release-notes/index.rst
index 33b6faa..9fcdb85 100644
--- a/docs/source/release-notes/index.rst
+++ b/docs/source/release-notes/index.rst
@@ -9,6 +9,7 @@ with the newest releases first.
==================
.. toctree::
+ 3.9.1
3.9.0
3.8.4
3.8.3