From 091cb92314dc701f10390136da78fbbb362e892e Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Mon, 26 Apr 2021 17:57:12 +0200 Subject: Update copyrite notice --- ChangeLog | 2 +- doc/release.md | 2 +- pylint/checkers/__init__.py | 1 + pylint/checkers/base.py | 2 +- pylint/checkers/imports.py | 1 + pylint/checkers/mapreduce_checker.py | 1 + pylint/checkers/newstyle.py | 1 + pylint/checkers/python3.py | 1 + pylint/checkers/raw_metrics.py | 1 + pylint/checkers/similar.py | 1 + pylint/checkers/spelling.py | 1 + pylint/checkers/stdlib.py | 1 + pylint/checkers/strings.py | 1 + pylint/checkers/variables.py | 2 +- pylint/reporters/__init__.py | 1 + tests/benchmark/test_baseline_benchmarks.py | 1 + tests/checkers/unittest_variables.py | 1 + tests/profile/test_profile_against_externals.py | 1 + tests/test_self.py | 2 +- 19 files changed, 19 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 52a55486a..3584a6310 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,7 +4,7 @@ Pylint's ChangeLog What's New in Pylint 2.8.2? =========================== -Release date: TBA +Release date: 2021-04-26 .. Put new features and bugfixes here and also in 'doc/whatsnew/2.9.rst' diff --git a/doc/release.md b/doc/release.md index 239b6c0bf..3898e1051 100644 --- a/doc/release.md +++ b/doc/release.md @@ -7,7 +7,7 @@ So, you want to release the `X.Y.Z` version of pylint ? 1. Run the acceptance tests to see if everything is alright with this release. We don't run them on CI: `pytest -m acceptance` 2. Check if the dependencies of the package are correct -3. Put the release date into the changelog and `What's new` section. +3. Put the release date into `Changelog` (and `What's new` if it's a major). 4. Generate the new copyright notices for this release: ```bash diff --git a/pylint/checkers/__init__.py b/pylint/checkers/__init__.py index 95a18a329..74d1bae1f 100644 --- a/pylint/checkers/__init__.py +++ b/pylint/checkers/__init__.py @@ -12,6 +12,7 @@ # Copyright (c) 2019 Bruno P. Kinoshita # Copyright (c) 2020-2021 hippo91 # Copyright (c) 2020 Frank Harrison +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Copyright (c) 2021 Matus Valo # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/pylint/checkers/base.py b/pylint/checkers/base.py index b939b3300..7918b0ea1 100644 --- a/pylint/checkers/base.py +++ b/pylint/checkers/base.py @@ -52,8 +52,8 @@ # Copyright (c) 2020 Gabriel R Sezefredo # Copyright (c) 2020 Benny # Copyright (c) 2020 Anubhav <35621759+anubh-v@users.noreply.github.com> -# Copyright (c) 2021 Andreas Finkler # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> +# Copyright (c) 2021 Andreas Finkler # Copyright (c) 2021 Or Bahari # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/pylint/checkers/imports.py b/pylint/checkers/imports.py index 03ba231cb..68afdda8d 100644 --- a/pylint/checkers/imports.py +++ b/pylint/checkers/imports.py @@ -34,6 +34,7 @@ # Copyright (c) 2020 Peter Kolbus # Copyright (c) 2020 Damien Baty # Copyright (c) 2020 Anthony Sottile +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Copyright (c) 2021 Andrew Howe # Copyright (c) 2021 Matus Valo diff --git a/pylint/checkers/mapreduce_checker.py b/pylint/checkers/mapreduce_checker.py index d039fcda5..d8058e205 100644 --- a/pylint/checkers/mapreduce_checker.py +++ b/pylint/checkers/mapreduce_checker.py @@ -1,4 +1,5 @@ # Copyright (c) 2020 Frank Harrison +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Copyright (c) 2021 Pierre Sassoulas # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/pylint/checkers/newstyle.py b/pylint/checkers/newstyle.py index 7ae623047..0c3344632 100644 --- a/pylint/checkers/newstyle.py +++ b/pylint/checkers/newstyle.py @@ -14,6 +14,7 @@ # Copyright (c) 2019 Hugo van Kemenade # Copyright (c) 2019 Robert Schweizer # Copyright (c) 2020 hippo91 +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/pylint/checkers/python3.py b/pylint/checkers/python3.py index d5dd68de3..d5b929b94 100644 --- a/pylint/checkers/python3.py +++ b/pylint/checkers/python3.py @@ -32,6 +32,7 @@ # Copyright (c) 2020 谭九鼎 <109224573@qq.com> # Copyright (c) 2020 Federico Bond # Copyright (c) 2020 Athos Ribeiro +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Copyright (c) 2021 Tiago Honorato # Copyright (c) 2021 tiagohonorato <61059243+tiagohonorato@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/pylint/checkers/raw_metrics.py b/pylint/checkers/raw_metrics.py index 6f8d2d9b8..68dfd474b 100644 --- a/pylint/checkers/raw_metrics.py +++ b/pylint/checkers/raw_metrics.py @@ -9,6 +9,7 @@ # Copyright (c) 2019-2021 Pierre Sassoulas # Copyright (c) 2020-2021 hippo91 # Copyright (c) 2020 谭九鼎 <109224573@qq.com> +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/pylint/checkers/similar.py b/pylint/checkers/similar.py index a8bf609ca..780db07ef 100644 --- a/pylint/checkers/similar.py +++ b/pylint/checkers/similar.py @@ -17,6 +17,7 @@ # Copyright (c) 2020 Eli Fine # Copyright (c) 2020 hippo91 # Copyright (c) 2020 Shiv Venkatasubrahmanyam +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/pylint/checkers/spelling.py b/pylint/checkers/spelling.py index 7bd976045..b090a389e 100644 --- a/pylint/checkers/spelling.py +++ b/pylint/checkers/spelling.py @@ -17,6 +17,7 @@ # Copyright (c) 2020 Ganden Schaffner # Copyright (c) 2020 hippo91 # Copyright (c) 2020 Damien Baty +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Copyright (c) 2021 Andreas Finkler # Copyright (c) 2021 Eli Fine diff --git a/pylint/checkers/stdlib.py b/pylint/checkers/stdlib.py index c28f62bd8..dc1c1b2d6 100644 --- a/pylint/checkers/stdlib.py +++ b/pylint/checkers/stdlib.py @@ -26,6 +26,7 @@ # Copyright (c) 2020 hippo91 # Copyright (c) 2020 谭九鼎 <109224573@qq.com> # Copyright (c) 2020 Anthony Sottile +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Copyright (c) 2021 Matus Valo # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/pylint/checkers/strings.py b/pylint/checkers/strings.py index 5026f9d74..33544bca0 100644 --- a/pylint/checkers/strings.py +++ b/pylint/checkers/strings.py @@ -24,6 +24,7 @@ # Copyright (c) 2020 hippo91 # Copyright (c) 2020 谭九鼎 <109224573@qq.com> # Copyright (c) 2020 Anthony +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/pylint/checkers/variables.py b/pylint/checkers/variables.py index 6f262925d..f4573c28e 100644 --- a/pylint/checkers/variables.py +++ b/pylint/checkers/variables.py @@ -39,8 +39,8 @@ # Copyright (c) 2020 Andrew Simmons # Copyright (c) 2020 Anthony Sottile # Copyright (c) 2020 Ashley Whetter -# Copyright (c) 2021 haasea <44787650+haasea@users.noreply.github.com> # Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> +# Copyright (c) 2021 haasea <44787650+haasea@users.noreply.github.com> # Copyright (c) 2021 Alexander Kapshuna # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html diff --git a/pylint/reporters/__init__.py b/pylint/reporters/__init__.py index ef20f2fec..d5433f227 100644 --- a/pylint/reporters/__init__.py +++ b/pylint/reporters/__init__.py @@ -14,6 +14,7 @@ # Copyright (c) 2019, 2021 Pierre Sassoulas # Copyright (c) 2020 hippo91 # Copyright (c) 2020 Anthony Sottile +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/tests/benchmark/test_baseline_benchmarks.py b/tests/benchmark/test_baseline_benchmarks.py index df671dbf2..6fc914d48 100644 --- a/tests/benchmark/test_baseline_benchmarks.py +++ b/tests/benchmark/test_baseline_benchmarks.py @@ -3,6 +3,7 @@ # Copyright (c) 2020 hippo91 # Copyright (c) 2020 Claudiu Popa # Copyright (c) 2020 Frank Harrison +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/tests/checkers/unittest_variables.py b/tests/checkers/unittest_variables.py index f294630d9..90daa8d5d 100644 --- a/tests/checkers/unittest_variables.py +++ b/tests/checkers/unittest_variables.py @@ -13,6 +13,7 @@ # Copyright (c) 2020 Andrew Simmons # Copyright (c) 2020 Andrew Simmons # Copyright (c) 2020 Anthony Sottile +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/tests/profile/test_profile_against_externals.py b/tests/profile/test_profile_against_externals.py index 42cbbf7fd..2860411bb 100644 --- a/tests/profile/test_profile_against_externals.py +++ b/tests/profile/test_profile_against_externals.py @@ -1,6 +1,7 @@ """ Profiles basic -jX functionality """ # Copyright (c) 2020-2021 Pierre Sassoulas # Copyright (c) 2020 Frank Harrison +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/LICENSE diff --git a/tests/test_self.py b/tests/test_self.py index 7f0fa4d39..4a1057996 100644 --- a/tests/test_self.py +++ b/tests/test_self.py @@ -24,9 +24,9 @@ # Copyright (c) 2020 Pieter Engelbrecht # Copyright (c) 2020 Clément Pit-Claudel # Copyright (c) 2020 Anthony Sottile +# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Copyright (c) 2021 Andreas Finkler # Copyright (c) 2021 chohner -# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com> # Copyright (c) 2021 Louis Sautier # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html -- cgit v1.2.1