Skip to content

Commit 45cbae2

Browse files
Bump pylint to 2.13.8, update changelog
1 parent ec2eee8 commit 45cbae2

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

CONTRIBUTORS.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ contributors:
141141
* Added new useless-return checker,
142142
* Added new try-except-raise checker
143143
- Téo Bouvard <[email protected]>
144+
- Tim Martin <[email protected]>
144145
- Mihai Balint <[email protected]>
145146
- Mark Bell <[email protected]>
146147
- Konstantina Saketou <[email protected]>
@@ -153,7 +154,6 @@ contributors:
153154
- Aru Sahni <[email protected]>: Git ignoring, regex-based ignores
154155
- Andreas Freimuth <[email protected]>: fix indentation checking with tabs
155156
- Alexandru Coman <[email protected]>
156-
- Tim Martin <[email protected]>
157157
- Takahide Nojima <[email protected]>
158158
- Taewon D. Kim <[email protected]>
159159
- Sneaky Pete <[email protected]>

ChangeLog

+7-1
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,16 @@ Release date: TBA
1616
(Ie. not necessarily at the end)
1717

1818

19-
What's New in Pylint 2.13.8?
19+
What's New in Pylint 2.13.9?
2020
============================
2121
Release date: TBA
2222

23+
24+
25+
What's New in Pylint 2.13.8?
26+
============================
27+
Release date: 2022-05-02
28+
2329
* Fix a false positive for ``undefined-loop-variable`` for a variable used in a lambda
2430
inside the first of multiple loops.
2531

doc/whatsnew/2.13.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -607,6 +607,10 @@ Other Changes
607607

608608
Closes #5769
609609

610+
* Only raise ``not-callable`` when all the inferred values of a property are not callable.
611+
612+
Closes #5931
613+
610614
* Fix a false positive for ``undefined-loop-variable`` when the ``else`` of a ``for``
611615
loop raises or returns.
612616

@@ -617,10 +621,6 @@ Other Changes
617621

618622
Closes #4020
619623

620-
* Only raise ``not-callable`` when all the inferred values of a property are not callable.
621-
622-
Closes #5931
623-
624624
* Avoid reporting ``superfluous-parens`` on expressions using the ``is not`` operator.
625625

626626
Closes #5930

pylint/__pkginfo__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from typing import Tuple
66

7-
__version__ = "2.13.7"
7+
__version__ = "2.13.8"
88

99

1010
def get_numversion_from_version(v: str) -> Tuple:

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.13.7"
4+
current = "2.13.8"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

0 commit comments

Comments
 (0)