Skip to content

Commit 5b54370

Browse files
committed
Version bump for 0.0.13.
Also forgot to do release notes for 0.0.12, whoops.
1 parent f52fcad commit 5b54370

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@ Configuration options also exist:
2525

2626
## Changelog
2727

28+
0.0.13
29+
- Added a new option for ignoring functions decorated with the override decorator. Thanks to Thomas M Kehrenberg for contributing this!
30+
31+
0.0.12
32+
- Fixed an issue causing flake8 --help to break. Thanks to Calum Young for contributing this fix!
33+
- Starting from this release, automated CI runs on each Github PR. Thanks again to Calum Young for contributing this work!
34+
2835
0.0.11
2936
- Added a new option for ignoring functions decorated with overload.
3037
- Added a new option for ignoring dunder methods (double-underscore) methods.

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.12"
15+
version = "0.0.13"
1616

1717
ignore_abstract = False
1818
ignore_overload = 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.12",
10+
version="0.0.13",
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)