Skip to content

Commit 7dece5b

Browse files
Prepare for 2.8.0 release
1 parent bcfb46d commit 7dece5b

26 files changed

+54
-13
lines changed

.copyrite_aliases

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,30 @@
7474
],
7575
"authoritative_mail": "[email protected]",
7676
"name": "Ville Skyttä"
77+
},
78+
{
79+
"mails": [
80+
81+
82+
83+
],
84+
"authoritative_mail": "[email protected]",
85+
"name": "Eli Fine"
86+
},
87+
{
88+
"mails": [
89+
90+
91+
],
92+
"authoritative_mail": "[email protected]",
93+
"name": "Andreas Finkler"
94+
},
95+
{
96+
"mails": [
97+
98+
99+
],
100+
"authoritative_mail": "[email protected]",
101+
"name": "Matus Valo"
77102
}
78103
]

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Pylint's ChangeLog
77

88
What's New in Pylint 2.8.0?
99
===========================
10-
Release date: 2021-04-25
10+
Release date: 2021-04-24
1111

1212
* New refactoring message ``consider-using-with``. This message is emitted if resource-allocating functions or methods of the
1313
standard library (like ``open()`` or ``threading.Lock.acquire()``) that can be used as a context manager are called without

doc/whatsnew/2.8.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**************************
44

55
:Release: 2.8
6-
:Date: undefined
6+
:Date: 2021-04-24
77

88
Summary -- Release highlights
99
=============================

pylint/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (c) 2014 Arun Persaud <[email protected]>
44
# Copyright (c) 2015 Ionel Cristian Maries <[email protected]>
55
# Copyright (c) 2018 Nick Drozd <[email protected]>
6-
# Copyright (c) 2020 Pierre Sassoulas <[email protected]>
6+
# Copyright (c) 2020-2021 Pierre Sassoulas <[email protected]>
77
# Copyright (c) 2021 Marc Mueller <[email protected]>
88

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

pylint/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__version__ = "2.8.0"
77
# For an official release, use 'alpha_version = False' and 'dev_version = None'
88
alpha_version: bool = False # Release will be an alpha version if True (ex: '1.2.3a6')
9-
dev_version: Optional[int] = 1
9+
dev_version: Optional[int] = None
1010

1111
if dev_version is not None:
1212
if alpha_version:

pylint/checkers/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
# Copyright (c) 2018-2021 Pierre Sassoulas <[email protected]>
1111
# Copyright (c) 2018 ssolanki <[email protected]>
1212
# Copyright (c) 2019 Bruno P. Kinoshita <[email protected]>
13+
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1314
# Copyright (c) 2020 Frank Harrison <[email protected]>
14-
# Copyright (c) 2020 hippo91 <[email protected]>
15-
# Copyright (c) 2021 Matus Valo <[email protected]>
15+
# Copyright (c) 2021 Matus Valo <[email protected]>
1616

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

pylint/checkers/base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# Copyright (c) 2016 Yannack <[email protected]>
2121
# Copyright (c) 2016 Alex Jurkiewicz <[email protected]>
2222
# Copyright (c) 2017, 2019-2021 Pierre Sassoulas <[email protected]>
23-
# Copyright (c) 2017, 2019-2020 hippo91 <[email protected]>
23+
# Copyright (c) 2017, 2019-2021 hippo91 <[email protected]>
2424
# Copyright (c) 2017 danields <[email protected]>
2525
# Copyright (c) 2017 Jacques Kvam <[email protected]>
2626
# Copyright (c) 2017 ttenhoeve-aa <[email protected]>
@@ -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 Andreas Finkler <[email protected]>
5556
# Copyright (c) 2021 Marc Mueller <[email protected]>
5657
# Copyright (c) 2021 Or Bahari <[email protected]>
5758

pylint/checkers/classes.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@
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 tiagohonorato <[email protected]>
3736
# Copyright (c) 2021 Marc Mueller <[email protected]>
37+
# Copyright (c) 2021 James Sinclair <[email protected]>
38+
# Copyright (c) 2021 tiagohonorato <[email protected]>
3839

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

pylint/checkers/format.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
# Copyright (c) 2019 Nick Drozd <[email protected]>
3737
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
3838
# Copyright (c) 2020 Raphael Gaschignard <[email protected]>
39+
# Copyright (c) 2021 Marc Mueller <[email protected]>
3940

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

pylint/checkers/misc.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
# Copyright (c) 2020 wtracy <[email protected]>
1717
# Copyright (c) 2020 Anthony Sottile <[email protected]>
1818
# Copyright (c) 2020 Benny <[email protected]>
19+
# Copyright (c) 2021 Marc Mueller <[email protected]>
1920
# Copyright (c) 2021 Konstantina Saketou <[email protected]>
2021

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

0 commit comments

Comments
 (0)