summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshley Whetter <ashley@awhetter.co.uk>2021-08-20 20:56:36 -0700
committerAshley Whetter <AWhetter@users.noreply.github.com>2021-08-20 21:26:08 -0700
commitbf332820cb63305e286eb58a707c6d8b90e6cbb6 (patch)
tree1731bf582a4d35b44fbbf5b99c5cbad78aac9697
parentd701a979d95c5e4ca6dd4860ab30e08880a904d0 (diff)
downloadpylint-git-bf332820cb63305e286eb58a707c6d8b90e6cbb6.tar.gz
Bump pylint to 2.10.1, update changelogv2.10.1
-rw-r--r--ChangeLog8
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--pylint/checkers/imports.py2
-rw-r--r--pylint/config/__init__.py2
-rw-r--r--pylint/exceptions.py2
-rw-r--r--pylint/extensions/_check_docs_utils.py2
-rw-r--r--pylint/extensions/confusing_elif.py2
-rw-r--r--pylint/pyreverse/dot_printer.py1
-rw-r--r--pylint/pyreverse/printer.py1
-rw-r--r--tbump.toml2
-rw-r--r--tests/checkers/unittest_design.py1
-rw-r--r--tests/pyreverse/test_utils.py1
12 files changed, 18 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 5a1398356..d2f9d99a0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -11,10 +11,16 @@ Release date: TBA
Put new features here and also in 'doc/whatsnew/2.11.rst'
-What's New in Pylint 2.10.1?
+What's New in Pylint 2.10.2?
============================
Release date: TBA
+
+
+What's New in Pylint 2.10.1?
+============================
+Release date: 2021-08-20
+
* pylint does not crash when PYLINT_HOME does not exist.
Closes #4883
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 50af1aef1..f313fcf60 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -2,7 +2,7 @@
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
from typing import Tuple
-__version__ = "2.10.1-dev0"
+__version__ = "2.10.1"
def get_numversion_from_version(v: str) -> Tuple:
diff --git a/pylint/checkers/imports.py b/pylint/checkers/imports.py
index 5cae08043..4654e4fe3 100644
--- a/pylint/checkers/imports.py
+++ b/pylint/checkers/imports.py
@@ -26,8 +26,8 @@
# Copyright (c) 2018 Mike Frysinger <vapier@gmail.com>
# Copyright (c) 2018 Sushobhit <31987769+sushobhit27@users.noreply.github.com>
# Copyright (c) 2018 Marianna Polatoglou <mpolatoglou@bloomberg.net>
-# Copyright (c) 2019, 2021 Nick Drozd <nicholasdrozd@gmail.com>
# Copyright (c) 2019-2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
+# Copyright (c) 2019, 2021 Nick Drozd <nicholasdrozd@gmail.com>
# Copyright (c) 2019 Hugo van Kemenade <hugovk@users.noreply.github.com>
# Copyright (c) 2019 Nick Smith <clickthisnick@users.noreply.github.com>
# Copyright (c) 2019 Paul Renvoisé <renvoisepaul@gmail.com>
diff --git a/pylint/config/__init__.py b/pylint/config/__init__.py
index b73d43e2d..c9a200315 100644
--- a/pylint/config/__init__.py
+++ b/pylint/config/__init__.py
@@ -23,9 +23,9 @@
# Copyright (c) 2018 Gary Tyler McLeod <mail@garytyler.com>
# Copyright (c) 2018 Konstantin <Github@pheanex.de>
# Copyright (c) 2018 Nick Drozd <nicholasdrozd@gmail.com>
+# Copyright (c) 2019, 2021 Ashley Whetter <ashley@awhetter.co.uk>
# Copyright (c) 2019-2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
# Copyright (c) 2019 Janne Rönkkö <jannero@users.noreply.github.com>
-# Copyright (c) 2019 Ashley Whetter <ashley@awhetter.co.uk>
# Copyright (c) 2019 Hugo van Kemenade <hugovk@users.noreply.github.com>
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
# Copyright (c) 2021 Eisuke Kawashima <e-kwsm@users.noreply.github.com>
diff --git a/pylint/exceptions.py b/pylint/exceptions.py
index f4c0fda0e..49fe8604e 100644
--- a/pylint/exceptions.py
+++ b/pylint/exceptions.py
@@ -5,8 +5,8 @@
# Copyright (c) 2019 Thomas Hisch <t.hisch@gmail.com>
# Copyright (c) 2020 hippo91 <guillaume.peillex@gmail.com>
# Copyright (c) 2020 Anthony Sottile <asottile@umich.edu>
-# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
+# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.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/main/LICENSE
diff --git a/pylint/extensions/_check_docs_utils.py b/pylint/extensions/_check_docs_utils.py
index 597010ad8..d41988414 100644
--- a/pylint/extensions/_check_docs_utils.py
+++ b/pylint/extensions/_check_docs_utils.py
@@ -13,8 +13,8 @@
# Copyright (c) 2019 Hugo van Kemenade <hugovk@users.noreply.github.com>
# Copyright (c) 2019 Danny Hermes <daniel.j.hermes@gmail.com>
# Copyright (c) 2019 Zeb Nicholls <zebedee.nicholls@climate-energy-college.org>
-# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.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/main/LICENSE
diff --git a/pylint/extensions/confusing_elif.py b/pylint/extensions/confusing_elif.py
index 987dd2b9c..418aad600 100644
--- a/pylint/extensions/confusing_elif.py
+++ b/pylint/extensions/confusing_elif.py
@@ -1,5 +1,5 @@
-# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
+# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Andreas Finkler <andi.finkler@gmail.com>
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
diff --git a/pylint/pyreverse/dot_printer.py b/pylint/pyreverse/dot_printer.py
index 09852e598..dd7e56806 100644
--- a/pylint/pyreverse/dot_printer.py
+++ b/pylint/pyreverse/dot_printer.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
# Copyright (c) 2021 Nick Drozd <nicholasdrozd@gmail.com>
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Andreas Finkler <andi.finkler@gmail.com>
diff --git a/pylint/pyreverse/printer.py b/pylint/pyreverse/printer.py
index 7d4236026..99ab67df1 100644
--- a/pylint/pyreverse/printer.py
+++ b/pylint/pyreverse/printer.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Andreas Finkler <andi.finkler@gmail.com>
diff --git a/tbump.toml b/tbump.toml
index 0dd7f4044..aab4c272c 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"
[version]
-current = "2.10.1-dev0"
+current = "2.10.1"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
diff --git a/tests/checkers/unittest_design.py b/tests/checkers/unittest_design.py
index d3058225f..136c86119 100644
--- a/tests/checkers/unittest_design.py
+++ b/tests/checkers/unittest_design.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
# Copyright (c) 2021 Rebecca Turner <rbt@sent.as>
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
diff --git a/tests/pyreverse/test_utils.py b/tests/pyreverse/test_utils.py
index 6fe52d7db..6b18880ca 100644
--- a/tests/pyreverse/test_utils.py
+++ b/tests/pyreverse/test_utils.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com>
# Copyright (c) 2021 Andreas Finkler <andi.finkler@gmail.com>