Skip to content

Commit 680edeb

Browse files
Bump pylint to 2.14.3, update changelog
1 parent b05ac51 commit 680edeb

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CONTRIBUTORS.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ contributors:
184184
- Antonio Quarta <[email protected]> (sgheppy)
185185
- Andrew J. Simmons <[email protected]> (anjsimmo)
186186
187+
- Yilei "Dolee" Yang <[email protected]>
187188
- chohner <[email protected]>
188189
- Tiago Honorato <[email protected]>
189190
- Steven M. Vascellaro <[email protected]>
@@ -223,7 +224,6 @@ contributors:
223224
224225
- craig-sh <[email protected]>
225226
- bernie gray <[email protected]>
226-
- Yilei "Dolee" Yang <[email protected]>
227227
- Wes Turner <[email protected]> (Google): added new check 'inconsistent-quotes'
228228
- Tyler Thieding <[email protected]>
229229
- Tobias Hernstig <[email protected]>

doc/whatsnew/2/2.14/full.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
Full changelog
22
==============
33

4-
What's New in Pylint 2.14.3?
4+
What's New in Pylint 2.14.4?
55
----------------------------
66
Release date: TBA
77

8+
9+
10+
What's New in Pylint 2.14.3?
11+
----------------------------
12+
Release date: 2022-06-18
13+
814
* Fixed two false positives for ``bad-super-call`` for calls that refer to a non-direct parent.
915

1016
Closes #4922, Closes #2903

examples/pylintrc

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ analyse-fallback-blocks=no
99
# all available extensions.
1010
#enable-all-extensions=
1111

12-
# In error mode, checkers without error messages are disabled and for others,
13-
# only the ERROR messages are displayed, and no reports are done by default.
12+
# In error mode, messages with a category besides ERROR or FATAL are
13+
# suppressed, and no reports are done by default. Error mode is compatible with
14+
# disabling specific errors.
1415
#errors-only=
1516

1617
# Always return a 0 (non-error) status code, even if lint errors are found.

pylint/__pkginfo__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from __future__ import annotations
1111

12-
__version__ = "2.14.2"
12+
__version__ = "2.14.3"
1313

1414

1515
def get_numversion_from_version(v: str) -> tuple[int, int, int]:

tbump.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/PyCQA/pylint"
22

33
[version]
4-
current = "2.14.2"
4+
current = "2.14.3"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

0 commit comments

Comments
 (0)