diff --git a/doc/whatsnew/2/2.17/index.rst b/doc/whatsnew/2/2.17/index.rst index 04005f2601..e9f398028a 100644 --- a/doc/whatsnew/2/2.17/index.rst +++ b/doc/whatsnew/2/2.17/index.rst @@ -29,6 +29,30 @@ so we find problems before the actual release. .. towncrier release notes start +What's new in Pylint 2.17.7? +---------------------------- +Release date: 2023-09-30 + + +False Positives Fixed +--------------------- + +- Fix a regression in pylint 2.17.6 / astroid 2.15.7 causing various + messages for code involving ``TypeVar``. + + Closes #9069 (`#9069 `_) + + + +Other Bug Fixes +--------------- + +- Fix crash in refactoring checker when unary operand used with variable in for + loop. + + Closes #9074 (`#9074 `_) + + What's new in Pylint 2.17.6? ---------------------------- Release date: 2023-09-24 diff --git a/doc/whatsnew/fragments/9069.false_positive b/doc/whatsnew/fragments/9069.false_positive deleted file mode 100644 index fb06c23df2..0000000000 --- a/doc/whatsnew/fragments/9069.false_positive +++ /dev/null @@ -1,4 +0,0 @@ -Fix a regression in pylint 2.17.6 / astroid 2.15.7 causing various -messages for code involving ``TypeVar``. - -Closes #9069 diff --git a/doc/whatsnew/fragments/9074.bugfix b/doc/whatsnew/fragments/9074.bugfix deleted file mode 100644 index 16b3432fb7..0000000000 --- a/doc/whatsnew/fragments/9074.bugfix +++ /dev/null @@ -1,3 +0,0 @@ -Fix crash in refactoring checker when unary operand used with variable in for loop. - -Closes #9074 diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index f653dbc21e..f827f68616 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -9,7 +9,7 @@ from __future__ import annotations -__version__ = "2.17.6" +__version__ = "2.17.7" def get_numversion_from_version(v: str) -> tuple[int, int, int]: diff --git a/tbump.toml b/tbump.toml index 4752ca6511..f4da2ec506 100644 --- a/tbump.toml +++ b/tbump.toml @@ -1,7 +1,7 @@ github_url = "https://github.com/pylint-dev/pylint" [version] -current = "2.17.6" +current = "2.17.7" regex = ''' ^(?P0|[1-9]\d*) \. diff --git a/towncrier.toml b/towncrier.toml index 323da861a1..3cfc36e7a4 100644 --- a/towncrier.toml +++ b/towncrier.toml @@ -1,5 +1,5 @@ [tool.towncrier] -version = "2.17.6" +version = "2.17.7" directory = "doc/whatsnew/fragments" filename = "doc/whatsnew/2/2.17/index.rst" template = "doc/whatsnew/fragments/_template.rst"