summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshley Whetter <ashley@awhetter.co.uk>2021-08-20 21:11:32 -0700
committerAshley Whetter <AWhetter@users.noreply.github.com>2021-08-20 21:26:08 -0700
commitba00fb283378fdeb58c4e2e541be711420d96849 (patch)
treed9d718a581449cbf550f2629e3f46d54b60f55c0
parentbf332820cb63305e286eb58a707c6d8b90e6cbb6 (diff)
downloadpylint-git-ba00fb283378fdeb58c4e2e541be711420d96849.tar.gz
Bump pylint to 2.10.2-dev0, update changelog
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--pylint/checkers/imports.py2
-rw-r--r--pylint/exceptions.py1
-rw-r--r--pylint/extensions/_check_docs_utils.py2
-rw-r--r--pylint/extensions/confusing_elif.py1
-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
10 files changed, 10 insertions, 4 deletions
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index f313fcf60..8a869ab5b 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 4654e4fe3..e67456722 100644
--- a/pylint/checkers/imports.py
+++ b/pylint/checkers/imports.py
@@ -11,10 +11,10 @@
# Copyright (c) 2015 Noam Yorav-Raphael <noamraph@gmail.com>
# Copyright (c) 2015 James Morgensen <james.morgensen@gmail.com>
# Copyright (c) 2015 Ionel Cristian Maries <contact@ionelmc.ro>
+# Copyright (c) 2016, 2021 Ashley Whetter <ashley@awhetter.co.uk>
# Copyright (c) 2016 Jared Garst <cultofjared@gmail.com>
# Copyright (c) 2016 Maik Röder <maikroeder@gmail.com>
# Copyright (c) 2016 Glenn Matthews <glenn@e-dad.net>
-# Copyright (c) 2016 Ashley Whetter <ashley@awhetter.co.uk>
# Copyright (c) 2017, 2020 hippo91 <guillaume.peillex@gmail.com>
# Copyright (c) 2017 Michka Popoff <michkapopoff@gmail.com>
# Copyright (c) 2017 Łukasz Rogalski <rogalski.91@gmail.com>
diff --git a/pylint/exceptions.py b/pylint/exceptions.py
index 49fe8604e..ec1e513f7 100644
--- a/pylint/exceptions.py
+++ b/pylint/exceptions.py
@@ -5,6 +5,7 @@
# 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 Ashley Whetter <ashley@awhetter.co.uk>
# 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>
diff --git a/pylint/extensions/_check_docs_utils.py b/pylint/extensions/_check_docs_utils.py
index d41988414..659ef675b 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 <ashley@awhetter.co.uk>
# Copyright (c) 2016-2020 Claudiu Popa <pcmanticore@gmail.com>
-# Copyright (c) 2016-2019 Ashley Whetter <ashley@awhetter.co.uk>
# Copyright (c) 2016 Yuri Bochkarev <baltazar.bz@gmail.com>
# Copyright (c) 2016 Glenn Matthews <glenn@e-dad.net>
# Copyright (c) 2016 Moises Lopez <moylop260@vauxoo.com>
diff --git a/pylint/extensions/confusing_elif.py b/pylint/extensions/confusing_elif.py
index 418aad600..ba1e6ff01 100644
--- a/pylint/extensions/confusing_elif.py
+++ b/pylint/extensions/confusing_elif.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Ashley Whetter <ashley@awhetter.co.uk>
# 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/pylint/pyreverse/dot_printer.py b/pylint/pyreverse/dot_printer.py
index dd7e56806..fea9046f4 100644
--- a/pylint/pyreverse/dot_printer.py
+++ b/pylint/pyreverse/dot_printer.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Ashley Whetter <ashley@awhetter.co.uk>
# 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>
diff --git a/pylint/pyreverse/printer.py b/pylint/pyreverse/printer.py
index 99ab67df1..bdd561898 100644
--- a/pylint/pyreverse/printer.py
+++ b/pylint/pyreverse/printer.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Ashley Whetter <ashley@awhetter.co.uk>
# 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 aab4c272c..041c401da 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 136c86119..cb2d22fb7 100644
--- a/tests/checkers/unittest_design.py
+++ b/tests/checkers/unittest_design.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Ashley Whetter <ashley@awhetter.co.uk>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
# Copyright (c) 2021 Rebecca Turner <rbt@sent.as>
diff --git a/tests/pyreverse/test_utils.py b/tests/pyreverse/test_utils.py
index 6b18880ca..67db132b9 100644
--- a/tests/pyreverse/test_utils.py
+++ b/tests/pyreverse/test_utils.py
@@ -1,3 +1,4 @@
+# Copyright (c) 2021 Ashley Whetter <ashley@awhetter.co.uk>
# 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>