Skip to content

Commit

Permalink
Bump pylint to 2.14.3, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Jun 18, 2022
1 parent b05ac51 commit 680edeb
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down
8 changes: 7 additions & 1 deletion doc/whatsnew/2/2.14/full.rst
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 3 additions & 2 deletions examples/pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from __future__ import annotations

__version__ = "2.14.2"
__version__ = "2.14.3"


def get_numversion_from_version(v: str) -> tuple[int, int, int]:
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -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*)
\.
Expand Down

0 comments on commit 680edeb

Please sign in to comment.