Skip to content

Commit

Permalink
Release 3.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed May 8, 2021
1 parent c428c55 commit c6e0d27
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
21 changes: 21 additions & 0 deletions docs/source/release-notes/3.9.2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
3.9.2 -- 2021-05-08
-------------------

You can view the `3.9.2 milestone`_ on GitHub for more details.

Bugs Fixed
~~~~~~~~~~

- Fix error message for ``E111`` in ``pycodestyle`` (See also :pull:`1328`,
:issue:`1327`).

Deprecations
~~~~~~~~~~~~

- ``indent_size_str`` is deprecated, use ``str(indent_size)`` instead (See
also :pull:`1328`, :issue:`1327`).


.. all links
.. _3.9.2 milestone:
https://github.com/PyCQA/flake8/milestone/40
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.2
3.9.1
3.9.0
3.8.4
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.1"
__version__ = "3.9.2"
__version_info__ = tuple(
int(i) for i in __version__.split(".") if i.isdigit()
)
Expand Down

0 comments on commit c6e0d27

Please sign in to comment.