From ae730ac7721d2cb206c153f680605b83d66fbc84 Mon Sep 17 00:00:00 2001 From: Pierre Sassoulas Date: Fri, 28 Jun 2024 14:58:01 +0200 Subject: [PATCH] Bump pylint to 3.2.5, update changelog (#9756) --- doc/whatsnew/3/3.2/index.rst | 15 +++++++++++++++ doc/whatsnew/fragments/9751.bugfix | 4 ---- pylint/__pkginfo__.py | 2 +- tbump.toml | 2 +- towncrier.toml | 2 +- 5 files changed, 18 insertions(+), 7 deletions(-) delete mode 100644 doc/whatsnew/fragments/9751.bugfix diff --git a/doc/whatsnew/3/3.2/index.rst b/doc/whatsnew/3/3.2/index.rst index 55687c1d8a..2d084b10c9 100644 --- a/doc/whatsnew/3/3.2/index.rst +++ b/doc/whatsnew/3/3.2/index.rst @@ -14,6 +14,21 @@ Summary -- Release highlights .. towncrier release notes start +What's new in Pylint 3.2.5? +--------------------------- +Release date: 2024-06-28 + + +Other Bug Fixes +--------------- + +- Fixed a false positive ``unreachable-code`` when using ``typing.Any`` as return type in python + 3.8, the ``typing.NoReturn`` are not taken into account anymore for python 3.8 however. + + Closes #9751 (`#9751 `_) + + + What's new in Pylint 3.2.4? --------------------------- Release date: 2024-06-26 diff --git a/doc/whatsnew/fragments/9751.bugfix b/doc/whatsnew/fragments/9751.bugfix deleted file mode 100644 index ddd37ac2b0..0000000000 --- a/doc/whatsnew/fragments/9751.bugfix +++ /dev/null @@ -1,4 +0,0 @@ -Fixed a false positive ``unreachable-code`` when using ``typing.Any`` as return type in python -3.8, the ``typing.NoReturn`` are not taken into account anymore for python 3.8 however. - -Closes #9751 diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index ed35957ca9..412b31c3ca 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -9,7 +9,7 @@ from __future__ import annotations -__version__ = "3.2.4" +__version__ = "3.2.5" def get_numversion_from_version(v: str) -> tuple[int, int, int]: diff --git a/tbump.toml b/tbump.toml index 422bb14b01..15ec0bc4e5 100644 --- a/tbump.toml +++ b/tbump.toml @@ -1,7 +1,7 @@ github_url = "https://github.com/pylint-dev/pylint" [version] -current = "3.2.4" +current = "3.2.5" regex = ''' ^(?P0|[1-9]\d*) \. diff --git a/towncrier.toml b/towncrier.toml index 2d790b3848..6e7a58f91e 100644 --- a/towncrier.toml +++ b/towncrier.toml @@ -1,5 +1,5 @@ [tool.towncrier] -version = "3.2.4" +version = "3.2.5" directory = "doc/whatsnew/fragments" filename = "doc/whatsnew/3/3.2/index.rst" template = "doc/whatsnew/fragments/_template.rst"