diff --git a/doc/whatsnew/3/3.2/index.rst b/doc/whatsnew/3/3.2/index.rst index 985344f552..f2e2cff46a 100644 --- a/doc/whatsnew/3/3.2/index.rst +++ b/doc/whatsnew/3/3.2/index.rst @@ -14,6 +14,37 @@ Summary -- Release highlights .. towncrier release notes start +What's new in Pylint 3.2.7? +--------------------------- +Release date: 2024-08-31 + + +False Positives Fixed +--------------------- + +- Fixed a false positive `unreachable` for `NoReturn` coroutine functions. + + Closes #9840. (`#9840 `_) + + + +Other Bug Fixes +--------------- + +- Fix crash in refactoring checker when calling a lambda bound as a method. + + Closes #9865 (`#9865 `_) + +- Fix a crash in ``undefined-loop-variable`` when providing the ``iterable`` argument to ``enumerate()``. + + Closes #9875 (`#9875 `_) + +- Fix to address indeterminacy of error message in case a module name is same as another in a separate namespace. + + Refs #9883 (`#9883 `_) + + + What's new in Pylint 3.2.6? --------------------------- Release date: 2024-07-21 diff --git a/doc/whatsnew/fragments/9840.false_positive b/doc/whatsnew/fragments/9840.false_positive deleted file mode 100644 index ed3cfb2e5c..0000000000 --- a/doc/whatsnew/fragments/9840.false_positive +++ /dev/null @@ -1,3 +0,0 @@ -Fixed a false positive `unreachable` for `NoReturn` coroutine functions. - -Closes #9840. diff --git a/doc/whatsnew/fragments/9865.bugfix b/doc/whatsnew/fragments/9865.bugfix deleted file mode 100644 index 04da90412a..0000000000 --- a/doc/whatsnew/fragments/9865.bugfix +++ /dev/null @@ -1,3 +0,0 @@ -Fix crash in refactoring checker when calling a lambda bound as a method. - -Closes #9865 diff --git a/doc/whatsnew/fragments/9875.bugfix b/doc/whatsnew/fragments/9875.bugfix deleted file mode 100644 index ee3da47204..0000000000 --- a/doc/whatsnew/fragments/9875.bugfix +++ /dev/null @@ -1,3 +0,0 @@ -Fix a crash in ``undefined-loop-variable`` when providing the ``iterable`` argument to ``enumerate()``. - -Closes #9875 diff --git a/doc/whatsnew/fragments/9883.bugfix b/doc/whatsnew/fragments/9883.bugfix deleted file mode 100644 index 51a1a935c0..0000000000 --- a/doc/whatsnew/fragments/9883.bugfix +++ /dev/null @@ -1,3 +0,0 @@ -Fix to address indeterminacy of error message in case a module name is same as another in a separate namespace. - -Refs #9883 diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index 729826c7e2..0f4bd5319f 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -9,7 +9,7 @@ from __future__ import annotations -__version__ = "3.2.6" +__version__ = "3.2.7" def get_numversion_from_version(v: str) -> tuple[int, int, int]: diff --git a/tbump.toml b/tbump.toml index e1970b7635..6dfecce196 100644 --- a/tbump.toml +++ b/tbump.toml @@ -1,7 +1,7 @@ github_url = "https://github.com/pylint-dev/pylint" [version] -current = "3.2.6" +current = "3.2.7" regex = ''' ^(?P0|[1-9]\d*) \. diff --git a/towncrier.toml b/towncrier.toml index 0dd2b2a486..abacccc812 100644 --- a/towncrier.toml +++ b/towncrier.toml @@ -1,5 +1,5 @@ [tool.towncrier] -version = "3.2.6" +version = "3.2.7" directory = "doc/whatsnew/fragments" filename = "doc/whatsnew/3/3.2/index.rst" template = "doc/whatsnew/fragments/_template.rst"