Skip to content

Commit 867d61b

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

File tree

19 files changed

+26
-12
lines changed

19 files changed

+26
-12
lines changed

ChangeLog

Lines changed: 7 additions & 1 deletion
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

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

77

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

pylint/checkers/classes.py

Lines changed: 1 addition & 0 deletions
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

Lines changed: 2 additions & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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

0 commit comments

Comments
 (0)