Skip to content

Commit

Permalink
Bump pylint to 2.15.9, update changelog (#7952)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Dec 17, 2022
1 parent 785c629 commit 1ded4d0
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 16 deletions.
34 changes: 34 additions & 0 deletions doc/whatsnew/2/2.15/index.rst
Expand Up @@ -29,6 +29,40 @@ Marc Byrne became a maintainer, welcome to the team !

.. towncrier release notes start
What's new in Pylint 2.15.9?
----------------------------
Release date: 2022-12-17


False Positives Fixed
---------------------

- Fix false-positive for ``used-before-assignment`` in pattern matching
with a guard.

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



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

- Pylint will no longer deadlock if a parallel job is killed but fail
immediately instead.

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

- When pylint exit due to bad arguments being provided the exit code will now
be the expected ``32``.

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

- Fixes a ``ModuleNotFound`` exception when running pylint on a Django project
with the ``pylint_django`` plugin enabled.

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


What's new in Pylint 2.15.8?
----------------------------
Release date: 2022-12-05
Expand Down
4 changes: 0 additions & 4 deletions doc/whatsnew/fragments/3899.bugfix

This file was deleted.

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

This file was deleted.

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

This file was deleted.

3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/7938.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.15.8"
__version__ = "2.15.9"


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/PyCQA/pylint"

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

0 comments on commit 1ded4d0

Please sign in to comment.