Skip to content

Commit a56b525

Browse files
Bump pylint to 2.9.0, update changelog, add python 3.10 to package meta
1 parent ca447f7 commit a56b525

File tree

16 files changed

+40
-17
lines changed

16 files changed

+40
-17
lines changed

ChangeLog

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,28 @@
22
Pylint's ChangeLog
33
------------------
44

5-
What's New in Pylint 2.9.0?
5+
What's New in Pylint 2.10.0?
6+
============================
7+
Release date: TBA
8+
9+
..
10+
Put new features here and also in 'doc/whatsnew/2.10.rst'
11+
12+
13+
What's New in Pylint 2.9.1?
614
===========================
715
Release date: TBA
816

917
..
10-
Put new features and bugfixes here and also in 'doc/whatsnew/2.9.rst'
18+
Put bug fixes that should not wait for a new minor version here
19+
20+
21+
22+
What's New in Pylint 2.9.0?
23+
===========================
24+
Release date: 2021-06-29
25+
26+
* Python 3.10 is now supported.
1127

1228
* Add type annotations to pyreverse dot files
1329

@@ -18,7 +34,7 @@ Release date: TBA
1834

1935
Closes #4618
2036

21-
* astroid has been upgraded to 2.6.0
37+
* astroid has been upgraded to 2.6.1
2238

2339
* Added various deprecated functions/methods for python 3.10, 3.7, 3.6 and 3.3
2440

@@ -36,8 +52,6 @@ Release date: TBA
3652

3753
Closes #4612
3854

39-
* Appveyor is no longer used in the continuous integration
40-
4155
* Added ``deprecated-decorator``: Emitted when deprecated decorator is used.
4256

4357
Closes #4429
@@ -137,7 +151,7 @@ Release date: TBA
137151
* Fix a crash when a plugin from the configuration could not be loaded and raise an error
138152
'bad-plugin-value' instead
139153

140-
Closes #4555
154+
Closes #4555
141155

142156
* Added handling of floating point values when parsing configuration from pyproject.toml
143157

@@ -174,11 +188,11 @@ Closes #4555
174188
consistency. As such they don't necessarily provide a performance benefit
175189
and are often times opinionated.
176190

177-
* New checker ``consider-using-tuple``. Emitted when an in-place defined
178-
list or set can be replaced by a tuple.
191+
* New checker ``consider-using-tuple``. Emitted when an in-place defined
192+
list or set can be replaced by a tuple.
179193

180-
* New checker ``consider-using-namedtuple-or-dataclass``. Emitted when dictionary values
181-
can be replaced by namedtuples or dataclass instances.
194+
* New checker ``consider-using-namedtuple-or-dataclass``. Emitted when dictionary values
195+
can be replaced by namedtuples or dataclass instances.
182196

183197
* Fix error that occurred when using ``slice`` as subscript for dict.
184198

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/master/LICENSE
33
from typing import Tuple
44

5-
__version__ = "2.9.0-dev1"
5+
__version__ = "2.9.0"
66

77

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

pylint/checkers/base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
# Copyright (c) 2020 Gabriel R Sezefredo <[email protected]>
5353
# Copyright (c) 2020 Benny <[email protected]>
5454
# Copyright (c) 2020 Anubhav <[email protected]>
55+
# Copyright (c) 2021 Lorena B <[email protected]>
5556
# Copyright (c) 2021 Marc Mueller <[email protected]>
5657
# Copyright (c) 2021 David Liu <[email protected]>
5758
# Copyright (c) 2021 Andreas Finkler <[email protected]>

pylint/checkers/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
# Copyright (c) 2020 Ram Rachum <[email protected]>
4242
# Copyright (c) 2020 Slavfox <[email protected]>
4343
# Copyright (c) 2020 Anthony Sottile <[email protected]>
44+
# Copyright (c) 2021 Lorena B <[email protected]>
4445
# Copyright (c) 2021 Marc Mueller <[email protected]>
4546
# Copyright (c) 2021 yushao2 <[email protected]>
4647

pylint/checkers/variables.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@
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 Sergei Lebedev <[email protected]>
43+
# Copyright (c) 2021 Lorena B <[email protected]>
4244
# Copyright (c) 2021 Marc Mueller <[email protected]>
4345
# Copyright (c) 2021 haasea <[email protected]>
4446
# Copyright (c) 2021 Alexander Kapshuna <[email protected]>

pylint/extensions/_check_docs_utils.py

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

pylint/extensions/confusing_elif.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
21
# Copyright (c) 2021 Andreas Finkler <[email protected]>
2+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
33

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

pylint/pyreverse/diagrams.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Copyright (c) 2018 ssolanki <[email protected]>
77
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
88
# Copyright (c) 2020 hippo91 <[email protected]>
9+
# Copyright (c) 2021 Mark Byrne <[email protected]>
910

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

pylint/pyreverse/inspector.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
77
# Copyright (c) 2020 hippo91 <[email protected]>
88
# Copyright (c) 2020 Anthony Sottile <[email protected]>
9+
# Copyright (c) 2021 Mark Byrne <[email protected]>
910

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

pylint/pyreverse/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1010
# Copyright (c) 2020 Peter Kolbus <[email protected]>
1111
# Copyright (c) 2020 hippo91 <[email protected]>
12-
# Copyright (c) 2021 Mark Byrne <mbyrnepr2@gmail.com>
12+
# Copyright (c) 2021 Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com>
1313

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

0 commit comments

Comments
 (0)