From 8e7b809806ef94818ae595d4b654f398a3030dbe Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Mon, 6 Mar 2023 15:55:57 +0100 Subject: [PATCH] Bump pylint to 2.16.4, update changelog (#8389) --- doc/whatsnew/2/2.16/index.rst | 14 ++++++++++++++ doc/whatsnew/fragments/8205.false_positive | 3 --- pylint/__pkginfo__.py | 2 +- tbump.toml | 2 +- towncrier.toml | 2 +- 5 files changed, 17 insertions(+), 6 deletions(-) delete mode 100644 doc/whatsnew/fragments/8205.false_positive diff --git a/doc/whatsnew/2/2.16/index.rst b/doc/whatsnew/2/2.16/index.rst index d2ad86ab3e..605b9b18bb 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 `_) + + 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 6bf596592f..0000000000 --- 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 a67fa48537..3ed56f7e92 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -9,7 +9,7 @@ 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 c4d04acf24..b62c2149a4 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 = ''' ^(?P0|[1-9]\d*) \. diff --git a/towncrier.toml b/towncrier.toml index a65d4681d2..75b2c474bc 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"