Skip to content

Commit

Permalink
Update to version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
karantan committed May 15, 2023
1 parent a21e72c commit 31aa4f1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ List of non-existent methods checked
Plugin for Flake8
-----------------

When both ``flake8 2.4`` and ``flake8-mock`` are installed, the plugin is
When both ``flake8`` and ``flake8-mock`` are installed, the plugin is
available in ``flake8``::

$ flake8 --version
2.4.1 (pep8: 1.5.7, flake8-mock: 0.3, pyflakes: 0.8.1)
5.0.4 (flake8-mock: 0.4, ...)


Example output
Expand Down Expand Up @@ -70,6 +70,10 @@ Collaborators
Changes
-------

0.4 (05-12-2023)
````````````````
* Fix compatibility with flake8 >= 5.0.0.

0.3 (09-10-2016)
````````````````
* Don't warn on `assert_not_called`, `assert_called` or `assert_called_once`.
Expand Down
2 changes: 1 addition & 1 deletion flake8_mock.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import tokenize


__version__ = '0.3'
__version__ = '0.4'

NON_EXISTENT_METHODS = [
'assert_calls',
Expand Down

0 comments on commit 31aa4f1

Please sign in to comment.