Skip to content

Commit

Permalink
version 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahandrews committed Mar 18, 2022
1 parent ddb9816 commit 0c50047
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ Tests can be run with ``pytest --doctest-modules flake8_blind_except.py``.
Changes
-------

0.2.1 - 2022-03-08
``````````````````
* Remove setuptools from install_requires (#8)

0.2.0 - 2021-01-07
``````````````````
* B902 error added for cases where a blind ``Exception`` is caught.
Expand Down
2 changes: 1 addition & 1 deletion flake8_blind_except.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pep8 as pycodestyle
import re

__version__ = '0.2.0'
__version__ = '0.2.1'

BLIND_EXCEPT_REGEX = re.compile(r'(^[ \t]*except(.*\b(Base)?Exception\b.*)?:)') # noqa

Expand Down

0 comments on commit 0c50047

Please sign in to comment.