Skip to content

Commit

Permalink
Bump pylint to 3.2.2, update changelog (#9658)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed May 20, 2024
1 parent 98c5af9 commit 769ffd2
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 10 deletions.
19 changes: 19 additions & 0 deletions doc/whatsnew/3/3.2/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,25 @@ Summary -- Release highlights

.. towncrier release notes start
What's new in Pylint 3.2.2?
---------------------------
Release date: 2024-05-20


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

- Fix multiple false positives for generic class syntax added in Python 3.12 (PEP 695).

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

- Exclude context manager without cleanup from
``contextmanager-generator-missing-cleanup`` checks.

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



What's new in Pylint 3.2.1?
---------------------------
Release date: 2024-05-18
Expand Down
3 changes: 0 additions & 3 deletions doc/whatsnew/fragments/9406.false_positive

This file was deleted.

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

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__ = "3.2.1"
__version__ = "3.2.2"


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

[version]
current = "3.2.1"
current = "3.2.2"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down
2 changes: 1 addition & 1 deletion towncrier.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.towncrier]
version = "3.2.1"
version = "3.2.2"
directory = "doc/whatsnew/fragments"
filename = "doc/whatsnew/3/3.2/index.rst"
template = "doc/whatsnew/fragments/_template.rst"
Expand Down

0 comments on commit 769ffd2

Please sign in to comment.