diff --git a/doc/whatsnew/3/3.2/index.rst b/doc/whatsnew/3/3.2/index.rst index d2f0d57475..c71ae72197 100644 --- a/doc/whatsnew/3/3.2/index.rst +++ b/doc/whatsnew/3/3.2/index.rst @@ -14,6 +14,25 @@ Summary -- Release highlights .. towncrier release notes start +What's new in Pylint 3.2.2? +--------------------------- +Release date: 2024-05-20 + + +False Positives Fixed +--------------------- + +- Fix multiple false positives for generic class syntax added in Python 3.12 (PEP 695). + + Closes #9406 (`#9406 `_) + +- Exclude context manager without cleanup from + ``contextmanager-generator-missing-cleanup`` checks. + + Closes #9625 (`#9625 `_) + + + What's new in Pylint 3.2.1? --------------------------- Release date: 2024-05-18 diff --git a/doc/whatsnew/fragments/9406.false_positive b/doc/whatsnew/fragments/9406.false_positive deleted file mode 100644 index 0c85ef699c..0000000000 --- a/doc/whatsnew/fragments/9406.false_positive +++ /dev/null @@ -1,3 +0,0 @@ -Fix multiple false positives for generic class syntax added in Python 3.12 (PEP 695). - -Closes #9406 diff --git a/doc/whatsnew/fragments/9625.false_positive b/doc/whatsnew/fragments/9625.false_positive deleted file mode 100644 index 90d4a7a076..0000000000 --- a/doc/whatsnew/fragments/9625.false_positive +++ /dev/null @@ -1,4 +0,0 @@ -Exclude context manager without cleanup from -``contextmanager-generator-missing-cleanup`` checks. - -Closes #9625 diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index b0f13ea606..a898f5f7bd 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -9,7 +9,7 @@ from __future__ import annotations -__version__ = "3.2.1" +__version__ = "3.2.2" def get_numversion_from_version(v: str) -> tuple[int, int, int]: diff --git a/tbump.toml b/tbump.toml index e5a9a99151..e8a35d2fcc 100644 --- a/tbump.toml +++ b/tbump.toml @@ -1,7 +1,7 @@ github_url = "https://github.com/pylint-dev/pylint" [version] -current = "3.2.1" +current = "3.2.2" regex = ''' ^(?P0|[1-9]\d*) \. diff --git a/towncrier.toml b/towncrier.toml index f2e1245fc2..8df0009ec2 100644 --- a/towncrier.toml +++ b/towncrier.toml @@ -1,5 +1,5 @@ [tool.towncrier] -version = "3.2.1" +version = "3.2.2" directory = "doc/whatsnew/fragments" filename = "doc/whatsnew/3/3.2/index.rst" template = "doc/whatsnew/fragments/_template.rst"