Skip to content

Commit

Permalink
Bump pylint to 2.13.8, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed May 2, 2022
1 parent ec2eee8 commit 45cbae2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTORS.txt
Expand Up @@ -141,6 +141,7 @@ contributors:
* Added new useless-return checker,
* Added new try-except-raise checker
- Téo Bouvard <teobouvard@gmail.com>
- Tim Martin <tim@asymptotic.co.uk>
- Mihai Balint <balint.mihai@gmail.com>
- Mark Bell <mark00bell@googlemail.com>
- Konstantina Saketou <56515303+ksaketou@users.noreply.github.com>
Expand All @@ -153,7 +154,6 @@ contributors:
- Aru Sahni <arusahni@gmail.com>: Git ignoring, regex-based ignores
- Andreas Freimuth <andreas.freimuth@united-bits.de>: fix indentation checking with tabs
- Alexandru Coman <fcoman@bitdefender.com>
- Tim Martin <tim@asymptotic.co.uk>
- Takahide Nojima <nozzy123nozzy@gmail.com>
- Taewon D. Kim <kimt33@mcmaster.ca>
- Sneaky Pete <sneakypete81@gmail.com>
Expand Down
8 changes: 7 additions & 1 deletion ChangeLog
Expand Up @@ -16,10 +16,16 @@ Release date: TBA
(Ie. not necessarily at the end)


What's New in Pylint 2.13.8?
What's New in Pylint 2.13.9?
============================
Release date: TBA



What's New in Pylint 2.13.8?
============================
Release date: 2022-05-02

* Fix a false positive for ``undefined-loop-variable`` for a variable used in a lambda
inside the first of multiple loops.

Expand Down
8 changes: 4 additions & 4 deletions doc/whatsnew/2.13.rst
Expand Up @@ -607,6 +607,10 @@ Other Changes

Closes #5769

* Only raise ``not-callable`` when all the inferred values of a property are not callable.

Closes #5931

* Fix a false positive for ``undefined-loop-variable`` when the ``else`` of a ``for``
loop raises or returns.

Expand All @@ -617,10 +621,6 @@ Other Changes

Closes #4020

* Only raise ``not-callable`` when all the inferred values of a property are not callable.

Closes #5931

* Avoid reporting ``superfluous-parens`` on expressions using the ``is not`` operator.

Closes #5930
Expand Down
2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Expand Up @@ -4,7 +4,7 @@

from typing import Tuple

__version__ = "2.13.7"
__version__ = "2.13.8"


def get_numversion_from_version(v: str) -> Tuple:
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"

[version]
current = "2.13.7"
current = "2.13.8"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down

0 comments on commit 45cbae2

Please sign in to comment.