Skip to content

Commit

Permalink
Release 3.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Apr 16, 2021
1 parent e3313e0 commit f7bda92
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 1 deletion.
6 changes: 6 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.extlinks',
'sphinx.ext.intersphinx',
'sphinx.ext.todo',
'sphinx.ext.coverage',
Expand Down Expand Up @@ -298,3 +299,8 @@

# 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", "#"),
}
15 changes: 15 additions & 0 deletions docs/source/release-notes/3.9.1.rst
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions docs/source/release-notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ with the newest releases first.
==================

.. toctree::
3.9.1
3.9.0
3.8.4
3.8.3
Expand Down
2 changes: 1 addition & 1 deletion src/flake8/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
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()
)
Expand Down

0 comments on commit f7bda92

Please sign in to comment.