Skip to content

Commit 444f654

Browse files
Bump pylint to 2.9.6, update changelog
1 parent c04f92e commit 444f654

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

ChangeLog

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
Pylint's ChangeLog
33
------------------
44

5+
..
6+
Put bug fixes that should not wait for a new minor version here
7+
58
What's New in Pylint 2.10.0?
69
============================
710
Release date: TBA
@@ -10,13 +13,16 @@ Release date: TBA
1013
Put new features here and also in 'doc/whatsnew/2.10.rst'
1114

1215

16+
1317
What's New in Pylint 2.9.6?
1418
===========================
15-
Release date: TBA
19+
Release date: 2021-07-28
1620

17-
..
18-
Put bug fixes that should not wait for a new minor version here
1921

22+
* Fix a false positive ``undefined-variable`` when variable name in decoration
23+
matches function argument
24+
25+
Closes #3791
2026

2127

2228
What's New in Pylint 2.9.5?

pylint/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
33
from typing import Tuple
44

5-
__version__ = "2.9.6-dev0"
5+
__version__ = "2.9.6"
66

77

88
def get_numversion_from_version(v: str) -> Tuple:

pylint/checkers/variables.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939
# Copyright (c) 2020 Andrew Simmons <[email protected]>
4040
# Copyright (c) 2020 Anthony Sottile <[email protected]>
4141
# Copyright (c) 2020 Ashley Whetter <[email protected]>
42+
# Copyright (c) 2021 Marcin Kurczewski <[email protected]>
4243
# Copyright (c) 2021 Marc Mueller <[email protected]>
4344
# Copyright (c) 2021 Sergei Lebedev <[email protected]>
4445
# Copyright (c) 2021 Lorena B <[email protected]>
4546
# Copyright (c) 2021 haasea <[email protected]>
4647
# Copyright (c) 2021 Alexander Kapshuna <[email protected]>
47-
# Copyright (c) 2021 Marcin Kurczewski <[email protected]>
4848

4949
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
5050
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/PyCQA/pylint"
22

33
[version]
4-
current = "2.9.6-dev0"
4+
current = "2.9.6"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

0 commit comments

Comments
 (0)