Bump pylint to 2.10.2-dev0, update changelog
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index f313fcf..8a869ab 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"
+__version__ = "2.10.2-dev0"
 
 
 def get_numversion_from_version(v: str) -> Tuple:
diff --git a/pylint/checkers/imports.py b/pylint/checkers/imports.py
index 4654e4f..e674567 100644
--- a/pylint/checkers/imports.py
+++ b/pylint/checkers/imports.py
@@ -11,10 +11,10 @@
 # Copyright (c) 2015 Noam Yorav-Raphael <[email protected]>
 # Copyright (c) 2015 James Morgensen <[email protected]>
 # Copyright (c) 2015 Ionel Cristian Maries <[email protected]>
+# Copyright (c) 2016, 2021 Ashley Whetter <[email protected]>
 # Copyright (c) 2016 Jared Garst <[email protected]>
 # Copyright (c) 2016 Maik Röder <[email protected]>
 # Copyright (c) 2016 Glenn Matthews <[email protected]>
-# Copyright (c) 2016 Ashley Whetter <[email protected]>
 # Copyright (c) 2017, 2020 hippo91 <[email protected]>
 # Copyright (c) 2017 Michka Popoff <[email protected]>
 # Copyright (c) 2017 Ɓukasz Rogalski <[email protected]>
diff --git a/pylint/exceptions.py b/pylint/exceptions.py
index 49fe860..ec1e513 100644
--- a/pylint/exceptions.py
+++ b/pylint/exceptions.py
@@ -5,6 +5,7 @@
 # Copyright (c) 2019 Thomas Hisch <[email protected]>
 # Copyright (c) 2020 hippo91 <[email protected]>
 # Copyright (c) 2020 Anthony Sottile <[email protected]>
+# Copyright (c) 2021 Ashley Whetter <[email protected]>
 # Copyright (c) 2021 Pierre Sassoulas <[email protected]>
 # Copyright (c) 2021 Daniël van Noord <[email protected]>
 # Copyright (c) 2021 Marc Mueller <[email protected]>
diff --git a/pylint/extensions/_check_docs_utils.py b/pylint/extensions/_check_docs_utils.py
index d419884..659ef67 100644
--- a/pylint/extensions/_check_docs_utils.py
+++ b/pylint/extensions/_check_docs_utils.py
@@ -1,5 +1,5 @@
+# Copyright (c) 2016-2019, 2021 Ashley Whetter <[email protected]>
 # Copyright (c) 2016-2020 Claudiu Popa <[email protected]>
-# Copyright (c) 2016-2019 Ashley Whetter <[email protected]>
 # Copyright (c) 2016 Yuri Bochkarev <[email protected]>
 # Copyright (c) 2016 Glenn Matthews <[email protected]>
 # Copyright (c) 2016 Moises Lopez <[email protected]>
diff --git a/pylint/extensions/confusing_elif.py b/pylint/extensions/confusing_elif.py
index 418aad6..ba1e6ff 100644
--- a/pylint/extensions/confusing_elif.py
+++ b/pylint/extensions/confusing_elif.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Ashley Whetter <[email protected]>
 # Copyright (c) 2021 Pierre Sassoulas <[email protected]>
 # Copyright (c) 2021 Marc Mueller <[email protected]>
 # Copyright (c) 2021 Andreas Finkler <[email protected]>
diff --git a/pylint/pyreverse/dot_printer.py b/pylint/pyreverse/dot_printer.py
index dd7e568..fea9046 100644
--- a/pylint/pyreverse/dot_printer.py
+++ b/pylint/pyreverse/dot_printer.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Ashley Whetter <[email protected]>
 # Copyright (c) 2021 Pierre Sassoulas <[email protected]>
 # Copyright (c) 2021 Nick Drozd <[email protected]>
 # Copyright (c) 2021 Marc Mueller <[email protected]>
diff --git a/pylint/pyreverse/printer.py b/pylint/pyreverse/printer.py
index 99ab67d..bdd5618 100644
--- a/pylint/pyreverse/printer.py
+++ b/pylint/pyreverse/printer.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Ashley Whetter <[email protected]>
 # Copyright (c) 2021 Pierre Sassoulas <[email protected]>
 # Copyright (c) 2021 Marc Mueller <[email protected]>
 # Copyright (c) 2021 Andreas Finkler <[email protected]>
diff --git a/tbump.toml b/tbump.toml
index aab4c27..041c401 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
 github_url = "https://github.com/PyCQA/pylint"
 
 [version]
-current = "2.10.1"
+current = "2.10.2-dev0"
 regex = '''
 ^(?P<major>0|[1-9]\d*)
 \.
diff --git a/tests/checkers/unittest_design.py b/tests/checkers/unittest_design.py
index 136c861..cb2d22f 100644
--- a/tests/checkers/unittest_design.py
+++ b/tests/checkers/unittest_design.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Ashley Whetter <[email protected]>
 # Copyright (c) 2021 Pierre Sassoulas <[email protected]>
 # Copyright (c) 2021 Rebecca Turner <[email protected]>
 
diff --git a/tests/pyreverse/test_utils.py b/tests/pyreverse/test_utils.py
index 6b18880..67db132 100644
--- a/tests/pyreverse/test_utils.py
+++ b/tests/pyreverse/test_utils.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Ashley Whetter <[email protected]>
 # Copyright (c) 2021 Pierre Sassoulas <[email protected]>
 # Copyright (c) 2021 Marc Mueller <[email protected]>
 # Copyright (c) 2021 Mark Byrne <[email protected]>