summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2023-03-06 15:55:57 +0100
committerGitHub <noreply@github.com>2023-03-06 15:55:57 +0100
commit8e7b809806ef94818ae595d4b654f398a3030dbe (patch)
tree4d2f09c44bbc734207c5ef043d188bea401d1b9d
parentfb4512cd1446910c8dbc1eb1c365fc122edc49bf (diff)
downloadpylint-git-8e7b809806ef94818ae595d4b654f398a3030dbe.tar.gz
Bump pylint to 2.16.4, update changelog (#8389)v2.16.4
-rw-r--r--doc/whatsnew/2/2.16/index.rst14
-rw-r--r--doc/whatsnew/fragments/8205.false_positive3
-rw-r--r--pylint/__pkginfo__.py2
-rw-r--r--tbump.toml2
-rw-r--r--towncrier.toml2
5 files changed, 17 insertions, 6 deletions
diff --git a/doc/whatsnew/2/2.16/index.rst b/doc/whatsnew/2/2.16/index.rst
index d2ad86ab3..605b9b18b 100644
--- a/doc/whatsnew/2/2.16/index.rst
+++ b/doc/whatsnew/2/2.16/index.rst
@@ -32,6 +32,20 @@ Last but not least @clavedeluna and @nickdrozd became triagers, welcome to the t
.. towncrier release notes start
+What's new in Pylint 2.16.4?
+----------------------------
+Release date: 2023-03-06
+
+
+False Positives Fixed
+---------------------
+
+- Fix false positive for isinstance-second-argument-not-valid-type with union
+ types.
+
+ Closes #8205 (`#8205 <https://github.com/PyCQA/pylint/issues/8205>`_)
+
+
What's new in Pylint 2.16.3?
----------------------------
Release date: 2023-03-03
diff --git a/doc/whatsnew/fragments/8205.false_positive b/doc/whatsnew/fragments/8205.false_positive
deleted file mode 100644
index 6bf596592..000000000
--- a/doc/whatsnew/fragments/8205.false_positive
+++ /dev/null
@@ -1,3 +0,0 @@
-Fix false positive for isinstance-second-argument-not-valid-type with union types.
-
-Closes #8205
diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py
index a67fa4853..3ed56f7e9 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.16.3"
+__version__ = "2.16.4"
def get_numversion_from_version(v: str) -> tuple[int, int, int]:
diff --git a/tbump.toml b/tbump.toml
index c4d04acf2..b62c2149a 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"
[version]
-current = "2.16.3"
+current = "2.16.4"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
diff --git a/towncrier.toml b/towncrier.toml
index a65d4681d..75b2c474b 100644
--- a/towncrier.toml
+++ b/towncrier.toml
@@ -1,5 +1,5 @@
[tool.towncrier]
-version = "2.16.3"
+version = "2.16.4"
directory = "doc/whatsnew/fragments"
filename = "doc/whatsnew/2/2.16/index.rst"
template = "doc/whatsnew/fragments/_template.rst"