Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release branch 2.15.9 #7952

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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-15
Pierre-Sassoulas marked this conversation as resolved.
Show resolved Hide resolved


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