Skip to content

Commit 867d61b

Browse files
Bump pylint to 2.9.4, update changelog
1 parent dd54e55 commit 867d61b

19 files changed

+26
-12
lines changed

ChangeLog

+7-1
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,16 @@ Release date: TBA
1212
* Added ``time.clock`` to deprecated functions/methods for python 3.3
1313

1414

15-
What's New in Pylint 2.9.4?
15+
What's New in Pylint 2.9.5?
1616
===========================
1717
Release date: TBA
1818

19+
20+
21+
What's New in Pylint 2.9.4?
22+
===========================
23+
Release date: 2021-07-20
24+
1925
..
2026
Put bug fixes that should not wait for a new minor version here
2127

pylint/__pkginfo__.py

+1-1
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.4-dev0"
5+
__version__ = "2.9.4"
66

77

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

pylint/checkers/classes.py

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
# Copyright (c) 2019 Andrzej Klajnert <[email protected]>
3434
# Copyright (c) 2019 Pascal Corpet <[email protected]>
3535
# Copyright (c) 2020 GergelyKalmar <[email protected]>
36+
# Copyright (c) 2021 Yu Shao, Pang <[email protected]>
3637
# Copyright (c) 2021 Marc Mueller <[email protected]>
3738
# Copyright (c) 2021 yushao2 <[email protected]>
3839
# Copyright (c) 2021 Konstantina Saketou <[email protected]>

pylint/checkers/imports.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@
3535
# Copyright (c) 2020 Damien Baty <[email protected]>
3636
# Copyright (c) 2020 Anthony Sottile <[email protected]>
3737
# Copyright (c) 2021 Marc Mueller <[email protected]>
38-
# Copyright (c) 2021 yushao2 <[email protected]>
38+
# Copyright (c) 2021 Will Shanks <[email protected]>
3939
# Copyright (c) 2021 Matus Valo <[email protected]>
40+
# Copyright (c) 2021 yushao2 <[email protected]>
4041
# Copyright (c) 2021 Andrew Howe <[email protected]>
4142

4243
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/checkers/mapreduce_checker.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) 2020 Frank Harrison <[email protected]>
2-
# Copyright (c) 2021 Marc Mueller <[email protected]>
32
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
3+
# Copyright (c) 2021 Marc Mueller <[email protected]>
44

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

pylint/checkers/similar.py

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
# Copyright (c) 2020 Eli Fine <[email protected]>
1818
# Copyright (c) 2020 hippo91 <[email protected]>
1919
# Copyright (c) 2020 Shiv Venkatasubrahmanyam <[email protected]>
20+
# Copyright (c) 2021 Maksym Humetskyi <[email protected]>
2021
# Copyright (c) 2021 Marc Mueller <[email protected]>
2122
# Copyright (c) 2021 bot <[email protected]>
2223
# Copyright (c) 2021 Aditya Gupta <[email protected]>

pylint/checkers/stdlib.py

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
# Copyright (c) 2020 hippo91 <[email protected]>
2727
# Copyright (c) 2020 谭九鼎 <[email protected]>
2828
# Copyright (c) 2020 Anthony Sottile <[email protected]>
29+
# Copyright (c) 2021 Yilei "Dolee" Yang <[email protected]>
2930
# Copyright (c) 2021 Marc Mueller <[email protected]>
3031
# Copyright (c) 2021 Matus Valo <[email protected]>
3132
# Copyright (c) 2021 victor <[email protected]>

pylint/checkers/typecheck.py

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
# Copyright (c) 2020 Ram Rachum <[email protected]>
4343
# Copyright (c) 2020 Anthony Sottile <[email protected]>
4444
# Copyright (c) 2020 Anubhav <[email protected]>
45+
# Copyright (c) 2021 doranid <[email protected]>
4546
# Copyright (c) 2021 Marc Mueller <[email protected]>
4647
# Copyright (c) 2021 yushao2 <[email protected]>
4748
# Copyright (c) 2021 Andrew Haigh <[email protected]>

pylint/checkers/utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
# Copyright (c) 2020 Slavfox <[email protected]>
4343
# Copyright (c) 2020 Anthony Sottile <[email protected]>
4444
# Copyright (c) 2021 Marc Mueller <[email protected]>
45+
# Copyright (c) 2021 Matus Valo <[email protected]>
4546
# Copyright (c) 2021 Lorena B <[email protected]>
4647
# Copyright (c) 2021 yushao2 <[email protected]>
4748

pylint/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# Copyright (c) 2019 Thomas Hisch <[email protected]>
66
# Copyright (c) 2020 hippo91 <[email protected]>
77
# Copyright (c) 2020 Anthony Sottile <[email protected]>
8-
# Copyright (c) 2021 Marc Mueller <[email protected]>
98
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
9+
# Copyright (c) 2021 Marc Mueller <[email protected]>
1010
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
1111
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
1212

pylint/extensions/_check_docs_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1414
# Copyright (c) 2019 Danny Hermes <[email protected]>
1515
# Copyright (c) 2019 Zeb Nicholls <[email protected]>
16-
# Copyright (c) 2021 Marc Mueller <[email protected]>
1716
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
17+
# Copyright (c) 2021 Marc Mueller <[email protected]>
1818

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

pylint/extensions/broad_try_clause.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Copyright (c) 2019-2020 Tyler Thieding <[email protected]>
33
# Copyright (c) 2020 hippo91 <[email protected]>
44
# Copyright (c) 2020 Anthony Sottile <[email protected]>
5-
# Copyright (c) 2021 Marc Mueller <[email protected]>
65
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
6+
# Copyright (c) 2021 Marc Mueller <[email protected]>
77

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

pylint/extensions/check_docs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Copyright (c) 2015-2016, 2018, 2020 Claudiu Popa <[email protected]>
33
# Copyright (c) 2016 Ashley Whetter <[email protected]>
44
# Copyright (c) 2020 hippo91 <[email protected]>
5-
# Copyright (c) 2021 Marc Mueller <[email protected]>
65
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
6+
# Copyright (c) 2021 Marc Mueller <[email protected]>
77

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

pylint/extensions/confusing_elif.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright (c) 2021 Marc Mueller <[email protected]>
21
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2+
# Copyright (c) 2021 Marc Mueller <[email protected]>
33
# Copyright (c) 2021 Andreas Finkler <[email protected]>
44

55
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/reporters/ureports/nodes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# Copyright (c) 2018 Nick Drozd <[email protected]>
55
# Copyright (c) 2020 hippo91 <[email protected]>
66
# Copyright (c) 2020 Anthony Sottile <[email protected]>
7-
# Copyright (c) 2021 Marc Mueller <[email protected]>
87
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
8+
# Copyright (c) 2021 Marc Mueller <[email protected]>
99

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

tbump.toml

+1-1
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.4-dev0"
4+
current = "2.9.4"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

tests/checkers/unittest_similar.py

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# Copyright (c) 2020 Frank Harrison <[email protected]>
1313
# Copyright (c) 2020 Eli Fine <[email protected]>
1414
# Copyright (c) 2020 hippo91 <[email protected]>
15+
# Copyright (c) 2021 Maksym Humetskyi <[email protected]>
1516
# Copyright (c) 2021 Marc Mueller <[email protected]>
1617
# Copyright (c) 2021 Aditya Gupta <[email protected]>
1718

tests/extensions/test_confusing_elif.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright (c) 2021 Marc Mueller <[email protected]>
21
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2+
# Copyright (c) 2021 Marc Mueller <[email protected]>
33
# Copyright (c) 2021 Andreas Finkler <[email protected]>
44

55
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

tests/test_self.py

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
# Copyright (c) 2020 Pieter Engelbrecht <[email protected]>
2525
# Copyright (c) 2020 Clément Pit-Claudel <[email protected]>
2626
# Copyright (c) 2020 Anthony Sottile <[email protected]>
27+
# Copyright (c) 2021 Mark Bell <[email protected]>
2728
# Copyright (c) 2021 Marc Mueller <[email protected]>
2829
# Copyright (c) 2021 Dr. Nick <[email protected]>
2930
# Copyright (c) 2021 Andreas Finkler <[email protected]>

0 commit comments

Comments
 (0)