summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-05-02 15:59:34 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2022-05-02 16:38:19 +0200
commit45cbae2bab9001bb2f159103490a02d63e75ee5b (patch)
tree6fdec8f7bfc1b23adb67878de7b98156464f8454
parentec2eee8f26a5a7cb23d087dbf8aa16fade57b50d (diff)
downloadpylint-git-45cbae2bab9001bb2f159103490a02d63e75ee5b.tar.gz
Bump pylint to 2.13.8, update changelogv2.13.8
-rw-r--r--CONTRIBUTORS.txt2
-rw-r--r--ChangeLog8
-rw-r--r--doc/whatsnew/2.13.rst8
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--tbump.toml2
5 files changed, 14 insertions, 8 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index eee789a3e..fd6f17968 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -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>
@@ -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>
diff --git a/ChangeLog b/ChangeLog
index c1f81dc0c..7d8d60e85 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/doc/whatsnew/2.13.rst b/doc/whatsnew/2.13.rst
index a71b78136..56914559f 100644
--- a/doc/whatsnew/2.13.rst
+++ b/doc/whatsnew/2.13.rst
@@ -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.
@@ -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
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index 364eaceb1..9ac08af5a 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -4,7 +4,7 @@
from typing import Tuple
-__version__ = "2.13.7"
+__version__ = "2.13.8"
def get_numversion_from_version(v: str) -> Tuple:
diff --git a/tbump.toml b/tbump.toml
index 223b057d5..0bc188dd3 100644
--- a/tbump.toml
+++ b/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*)
\.