Skip to content

Commit

Permalink
Bump pylint to 2.15.3, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Sep 19, 2022
1 parent 38e2784 commit 403dac6
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 21 deletions.
24 changes: 24 additions & 0 deletions doc/whatsnew/2/2.15/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,30 @@ Marc Byrne became a maintainer, welcome to the team !

.. towncrier release notes start
What's new in Pylint 2.15.3?
----------------------------
Release date: 2022-09-19


- Fixed a crash in the ``unhashable-member`` checker when using a ``lambda`` as a dict key.

Closes #7453 (`#7453 <https://github.com/PyCQA/pylint/issues/7453>`_)
- Fix a crash in the ``modified-iterating-dict`` checker involving instance attributes.

Closes #7461 (`#7461 <https://github.com/PyCQA/pylint/issues/7461>`_)
- ``invalid-class-object`` does not crash anymore when ``__class__`` is assigned alongside another variable.

Closes #7467 (`#7467 <https://github.com/PyCQA/pylint/issues/7467>`_)
- Fix false positive for ``global-variable-not-assigned`` when a global variable is re-assigned via an ``ImportFrom`` node.

Closes #4809 (`#4809 <https://github.com/PyCQA/pylint/issues/4809>`_)
- Fix false positive for ``undefined-loop-variable`` in ``for-else`` loops that use a function
having a return type annotation of ``NoReturn`` or ``Never``.

Closes #7311 (`#7311 <https://github.com/PyCQA/pylint/issues/7311>`_)
- ``--help-msg`` now accepts a comma-separated list of message IDs again.

Closes #7471 (`#7471 <https://github.com/PyCQA/pylint/issues/7471>`_)

What's new in Pylint 2.15.2?
----------------------------
Expand Down
3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/4809.false_positive

This file was deleted.

4 changes: 0 additions & 4 deletions doc/whatsnew/fragments/7311.false_positive

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from __future__ import annotations

__version__ = "2.15.2"
__version__ = "2.15.3"


def get_numversion_from_version(v: str) -> tuple[int, int, int]:
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/pylint"

[version]
current = "2.15.2"
current = "2.15.3"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down

0 comments on commit 403dac6

Please sign in to comment.