Skip to content

Commit 091cb92

Browse files
Update copyrite notice
1 parent f9245c5 commit 091cb92

19 files changed

+19
-5
lines changed

ChangeLog

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

55
What's New in Pylint 2.8.2?
66
===========================
7-
Release date: TBA
7+
Release date: 2021-04-26
88

99
..
1010
Put new features and bugfixes here and also in 'doc/whatsnew/2.9.rst'

doc/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ So, you want to release the `X.Y.Z` version of pylint ?
77
1. Run the acceptance tests to see if everything is alright with this release. We don't
88
run them on CI: `pytest -m acceptance`
99
2. Check if the dependencies of the package are correct
10-
3. Put the release date into the changelog and `What's new` section.
10+
3. Put the release date into `Changelog` (and `What's new` if it's a major).
1111
4. Generate the new copyright notices for this release:
1212

1313
```bash

pylint/checkers/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# Copyright (c) 2019 Bruno P. Kinoshita <[email protected]>
1313
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1414
# Copyright (c) 2020 Frank Harrison <[email protected]>
15+
# Copyright (c) 2021 Marc Mueller <[email protected]>
1516
# Copyright (c) 2021 Matus Valo <[email protected]>
1617

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

pylint/checkers/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
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]>
5655
# Copyright (c) 2021 Marc Mueller <[email protected]>
56+
# Copyright (c) 2021 Andreas Finkler <[email protected]>
5757
# Copyright (c) 2021 Or Bahari <[email protected]>
5858

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

pylint/checkers/imports.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
# Copyright (c) 2020 Peter Kolbus <[email protected]>
3535
# Copyright (c) 2020 Damien Baty <[email protected]>
3636
# Copyright (c) 2020 Anthony Sottile <[email protected]>
37+
# Copyright (c) 2021 Marc Mueller <[email protected]>
3738
# Copyright (c) 2021 Andrew Howe <[email protected]>
3839
# Copyright (c) 2021 Matus Valo <[email protected]>
3940

pylint/checkers/mapreduce_checker.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright (c) 2020 Frank Harrison <[email protected]>
2+
# Copyright (c) 2021 Marc Mueller <[email protected]>
23
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
34

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

pylint/checkers/newstyle.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1515
# Copyright (c) 2019 Robert Schweizer <[email protected]>
1616
# Copyright (c) 2020 hippo91 <[email protected]>
17+
# Copyright (c) 2021 Marc Mueller <[email protected]>
1718

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

pylint/checkers/python3.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
# Copyright (c) 2020 谭九鼎 <[email protected]>
3333
# Copyright (c) 2020 Federico Bond <[email protected]>
3434
# Copyright (c) 2020 Athos Ribeiro <[email protected]>
35+
# Copyright (c) 2021 Marc Mueller <[email protected]>
3536
# Copyright (c) 2021 Tiago Honorato <[email protected]>
3637
# Copyright (c) 2021 tiagohonorato <[email protected]>
3738
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/checkers/raw_metrics.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
1010
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1111
# Copyright (c) 2020 谭九鼎 <[email protected]>
12+
# Copyright (c) 2021 Marc Mueller <[email protected]>
1213

1314
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
1415
# For details: https://github.com/PyCQA/pylint/blob/master/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 Marc Mueller <[email protected]>
2021

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

0 commit comments

Comments
 (0)