summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-06-18 09:31:38 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2022-06-18 10:31:21 +0200
commit680edebc686cad664bbed934a490aeafa775f163 (patch)
tree21049538895ffa5cf0597f6b8e7f4fa8cfd6d9c7
parentb05ac51ad2e3785b6b9b071b8cb241993c914105 (diff)
downloadpylint-git-680edebc686cad664bbed934a490aeafa775f163.tar.gz
Bump pylint to 2.14.3, update changelogv2.14.3
-rw-r--r--CONTRIBUTORS.txt2
-rw-r--r--doc/whatsnew/2/2.14/full.rst8
-rw-r--r--examples/pylintrc5
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--tbump.toml2
5 files changed, 13 insertions, 6 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index a0552db18..e6c4ffd54 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -184,6 +184,7 @@ contributors:
- Antonio Quarta <sgheppy88@gmail.com> (sgheppy)
- Andrew J. Simmons <anjsimmo@gmail.com> (anjsimmo)
- wtracy <afishionado@gmail.com>
+- Yilei "Dolee" Yang <yileiyang@google.com>
- chohner <mail@chohner.com>
- Tiago Honorato <61059243+tiagohonorato@users.noreply.github.com>
- Steven M. Vascellaro <svascellaro@gmail.com>
@@ -223,7 +224,6 @@ contributors:
- grizzly.nyo@gmail.com <grizzly.nyo@gmail.com>
- craig-sh <craig-sh@users.noreply.github.com>
- bernie gray <bfgray3@users.noreply.github.com>
-- Yilei "Dolee" Yang <yileiyang@google.com>
- Wes Turner <westurner@google.com> (Google): added new check 'inconsistent-quotes'
- Tyler Thieding <tyler@thieding.com>
- Tobias Hernstig <30827238+thernstig@users.noreply.github.com>
diff --git a/doc/whatsnew/2/2.14/full.rst b/doc/whatsnew/2/2.14/full.rst
index 2f6819b84..6b68892b3 100644
--- a/doc/whatsnew/2/2.14/full.rst
+++ b/doc/whatsnew/2/2.14/full.rst
@@ -1,10 +1,16 @@
Full changelog
==============
-What's New in Pylint 2.14.3?
+What's New in Pylint 2.14.4?
----------------------------
Release date: TBA
+
+
+What's New in Pylint 2.14.3?
+----------------------------
+Release date: 2022-06-18
+
* Fixed two false positives for ``bad-super-call`` for calls that refer to a non-direct parent.
Closes #4922, Closes #2903
diff --git a/examples/pylintrc b/examples/pylintrc
index 5146b9941..61528a5bb 100644
--- a/examples/pylintrc
+++ b/examples/pylintrc
@@ -9,8 +9,9 @@ analyse-fallback-blocks=no
# all available extensions.
#enable-all-extensions=
-# In error mode, checkers without error messages are disabled and for others,
-# only the ERROR messages are displayed, and no reports are done by default.
+# In error mode, messages with a category besides ERROR or FATAL are
+# suppressed, and no reports are done by default. Error mode is compatible with
+# disabling specific errors.
#errors-only=
# Always return a 0 (non-error) status code, even if lint errors are found.
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 8900cb202..83e09584c 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -9,7 +9,7 @@ It's updated via tbump, do not modify.
from __future__ import annotations
-__version__ = "2.14.2"
+__version__ = "2.14.3"
def get_numversion_from_version(v: str) -> tuple[int, int, int]:
diff --git a/tbump.toml b/tbump.toml
index ed3a40867..1597ff765 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"
[version]
-current = "2.14.2"
+current = "2.14.3"
regex = '''
^(?P<major>0|[1-9]\d*)
\.