From 3b2aede6e44fc92461c4662d4ee3b2b8c1454130 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Mon, 23 Sep 2024 20:10:52 -0400 Subject: [PATCH] Bump pylint to 3.3.1, update changelog --- doc/whatsnew/3/3.3/index.rst | 14 ++++++++++++++ doc/whatsnew/fragments/9947.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/9947.false_positive diff --git a/doc/whatsnew/3/3.3/index.rst b/doc/whatsnew/3/3.3/index.rst index 53d10e4440..0faf140c77 100644 --- a/doc/whatsnew/3/3.3/index.rst +++ b/doc/whatsnew/3/3.3/index.rst @@ -14,6 +14,20 @@ Summary -- Release highlights .. towncrier release notes start +What's new in Pylint 3.3.1? +--------------------------- +Release date: 2024-09-24 + + +False Positives Fixed +--------------------- + +- Fix regression causing some f-strings to not be inferred as strings. + + Closes #9947 (`#9947 `_) + + + What's new in Pylint 3.3.0? --------------------------- Release date: 2024-09-20 diff --git a/doc/whatsnew/fragments/9947.false_positive b/doc/whatsnew/fragments/9947.false_positive deleted file mode 100644 index dbad36749b..0000000000 --- a/doc/whatsnew/fragments/9947.false_positive +++ /dev/null @@ -1,3 +0,0 @@ -Fix regression causing some f-strings to not be inferred as strings. - -Closes #9947 diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index 954fd98a13..1e68b60ea4 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -9,7 +9,7 @@ from __future__ import annotations -__version__ = "3.3.0" +__version__ = "3.3.1" def get_numversion_from_version(v: str) -> tuple[int, int, int]: diff --git a/tbump.toml b/tbump.toml index c7962a94e3..35de0dbe91 100644 --- a/tbump.toml +++ b/tbump.toml @@ -1,7 +1,7 @@ github_url = "https://github.com/pylint-dev/pylint" [version] -current = "3.3.0" +current = "3.3.1" regex = ''' ^(?P0|[1-9]\d*) \. diff --git a/towncrier.toml b/towncrier.toml index d9c1481d94..9908fbeb0c 100644 --- a/towncrier.toml +++ b/towncrier.toml @@ -1,5 +1,5 @@ [tool.towncrier] -version = "3.3.0" +version = "3.3.1" directory = "doc/whatsnew/fragments" filename = "doc/whatsnew/3/3.3/index.rst" template = "doc/whatsnew/fragments/_template.rst"