summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-11-29 12:09:46 +0100
committerGitHub <noreply@github.com>2022-11-29 12:09:46 +0100
commit5a96370ff556fd71cc228ccb5c26b70e55041028 (patch)
tree03f4972f672dc62675146e1167a4cdb0e3f18401
parent43109b69ccc005120f701f9a1b1bd96d60f382db (diff)
downloadpylint-git-5a96370ff556fd71cc228ccb5c26b70e55041028.tar.gz
Bump pylint to 2.15.7, update changelog (#7845)v2.15.7
-rw-r--r--CONTRIBUTORS.txt1
-rw-r--r--doc/whatsnew/2/2.15/index.rst35
-rw-r--r--doc/whatsnew/fragments/5886.false_positive3
-rw-r--r--doc/whatsnew/fragments/6242.bugfix4
-rw-r--r--doc/whatsnew/fragments/7609.false_positive4
-rw-r--r--doc/whatsnew/fragments/7828.bugfix3
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--tbump.toml2
8 files changed, 38 insertions, 16 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index 05e6c9633..67a930ca3 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -483,6 +483,7 @@ contributors:
- Fabrice Douchant <Fabrice.Douchant@logilab.fr>
- Fabio Natali <me@fabionatali.com>
- Fabian Damken <fdamken+github@frisp.org>
+- Eric McDonald <221418+emcd@users.noreply.github.com>
- Eric Froemling <ericfroemling@gmail.com>
- Emmanuel Chaudron <manu.chaud@hotmail.fr>
- Elizabeth Bott <52465744+elizabethbott@users.noreply.github.com>
diff --git a/doc/whatsnew/2/2.15/index.rst b/doc/whatsnew/2/2.15/index.rst
index beb563e4c..1e404e81e 100644
--- a/doc/whatsnew/2/2.15/index.rst
+++ b/doc/whatsnew/2/2.15/index.rst
@@ -29,6 +29,41 @@ Marc Byrne became a maintainer, welcome to the team !
.. towncrier release notes start
+What's new in Pylint 2.15.7?
+----------------------------
+Release date: 2022-11-27
+
+
+False Positives Fixed
+---------------------
+
+- Fix ``deprecated-method`` false positive when alias for method is similar to
+ name of deprecated method.
+
+ Closes #5886 (`#5886 <https://github.com/PyCQA/pylint/issues/5886>`_)
+
+- Fix a false positive for ``used-before-assignment`` for imports guarded by
+ ``typing.TYPE_CHECKING`` later used in variable annotations.
+
+ Closes #7609 (`#7609 <https://github.com/PyCQA/pylint/issues/7609>`_)
+
+
+
+Other Bug Fixes
+---------------
+
+- Pylint will now filter duplicates given to it before linting. The output
+ should
+ be the same whether a file is given/discovered multiple times or not.
+
+ Closes #6242, #4053 (`#6242 <https://github.com/PyCQA/pylint/issues/6242>`_)
+
+- Fixes a crash in ``stop-iteration-return`` when the ``next`` builtin is
+ called without arguments.
+
+ Closes #7828 (`#7828 <https://github.com/PyCQA/pylint/issues/7828>`_)
+
+
What's new in Pylint 2.15.6?
----------------------------
Release date: 2022-11-19
diff --git a/doc/whatsnew/fragments/5886.false_positive b/doc/whatsnew/fragments/5886.false_positive
deleted file mode 100644
index d6ab03940..000000000
--- a/doc/whatsnew/fragments/5886.false_positive
+++ /dev/null
@@ -1,3 +0,0 @@
-Fix ``deprecated-method`` false positive when alias for method is similar to name of deprecated method.
-
-Closes #5886
diff --git a/doc/whatsnew/fragments/6242.bugfix b/doc/whatsnew/fragments/6242.bugfix
deleted file mode 100644
index 25d323e7e..000000000
--- a/doc/whatsnew/fragments/6242.bugfix
+++ /dev/null
@@ -1,4 +0,0 @@
-Pylint will now filter duplicates given to it before linting. The output should
-be the same whether a file is given/discovered multiple times or not.
-
-Closes #6242, #4053
diff --git a/doc/whatsnew/fragments/7609.false_positive b/doc/whatsnew/fragments/7609.false_positive
deleted file mode 100644
index 5c91f396e..000000000
--- a/doc/whatsnew/fragments/7609.false_positive
+++ /dev/null
@@ -1,4 +0,0 @@
-Fix a false positive for ``used-before-assignment`` for imports guarded by
-``typing.TYPE_CHECKING`` later used in variable annotations.
-
-Closes #7609
diff --git a/doc/whatsnew/fragments/7828.bugfix b/doc/whatsnew/fragments/7828.bugfix
deleted file mode 100644
index f47cc3cc9..000000000
--- a/doc/whatsnew/fragments/7828.bugfix
+++ /dev/null
@@ -1,3 +0,0 @@
-Fixes a crash in ``stop-iteration-return`` when the ``next`` builtin is called without arguments.
-
-Closes #7828
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index f8280c24d..3b7b44c37 100644
--- a/pylint/__pkginfo__.py
+++ b/pylint/__pkginfo__.py
@@ -9,7 +9,7 @@ It's updated via tbump, do not modify.
from __future__ import annotations
-__version__ = "2.15.6"
+__version__ = "2.15.7"
def get_numversion_from_version(v: str) -> tuple[int, int, int]:
diff --git a/tbump.toml b/tbump.toml
index dda83891d..166afddb6 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"
[version]
-current = "2.15.6"
+current = "2.15.7"
regex = '''
^(?P<major>0|[1-9]\d*)
\.