Skip to content

Commit 9e60842

Browse files
committed
Version bump.
1 parent c95e36c commit 9e60842

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ Configuration options also exist:
1515

1616
## Changelog
1717

18+
0.0.6
19+
- Stub functions that have docstrings are now correctly detected as stub functions
20+
- Functions with only a docstring are considered stub functions
21+
1822
0.0.5
1923
- The positions reported are now for the arguments themselves, rather than the function
2024

flake8_unused_arguments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
class Plugin:
1414
name = "flake8-unused-arguments"
15-
version = "0.0.5"
15+
version = "0.0.6"
1616

1717
ignore_abstract = False
1818
ignore_stubs = False

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
setup(
88
name="flake8-unused-arguments",
99
license="MIT",
10-
version="0.0.5",
10+
version="0.0.6",
1111
description="flake8 extension to warn on unused function arguments",
1212
author="Nathan Hoad",
1313
author_email="nathan@hoad.io",

0 commit comments

Comments
 (0)