Skip to content

Commit

Permalink
Bump pylint to 2.17.7, update changelog (#9084)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Sep 30, 2023
1 parent c2907a9 commit dade880
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 10 deletions.
24 changes: 24 additions & 0 deletions doc/whatsnew/2/2.17/index.rst
Expand Up @@ -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 <https://github.com/pylint-dev/pylint/issues/9069>`_)



Other Bug Fixes
---------------

- Fix crash in refactoring checker when unary operand used with variable in for
loop.

Closes #9074 (`#9074 <https://github.com/pylint-dev/pylint/issues/9074>`_)


What's new in Pylint 2.17.6?
----------------------------
Release date: 2023-09-24
Expand Down
4 changes: 0 additions & 4 deletions doc/whatsnew/fragments/9069.false_positive

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/9074.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Expand Up @@ -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]:
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/pylint-dev/pylint"

[version]
current = "2.17.6"
current = "2.17.7"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down

0 comments on commit dade880

Please sign in to comment.