Skip to content

Commit a98215b

Browse files
Bump pylint to 3.2.7, update changelog
1 parent 1deaffa commit a98215b

File tree

8 files changed

+34
-15
lines changed

8 files changed

+34
-15
lines changed

doc/whatsnew/3/3.2/index.rst

+31
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,37 @@ Summary -- Release highlights
1414

1515
.. towncrier release notes start
1616
17+
What's new in Pylint 3.2.7?
18+
---------------------------
19+
Release date: 2024-08-31
20+
21+
22+
False Positives Fixed
23+
---------------------
24+
25+
- Fixed a false positive `unreachable` for `NoReturn` coroutine functions.
26+
27+
Closes #9840. (`#9840 <https://github.com/pylint-dev/pylint/issues/9840>`_)
28+
29+
30+
31+
Other Bug Fixes
32+
---------------
33+
34+
- Fix crash in refactoring checker when calling a lambda bound as a method.
35+
36+
Closes #9865 (`#9865 <https://github.com/pylint-dev/pylint/issues/9865>`_)
37+
38+
- Fix a crash in ``undefined-loop-variable`` when providing the ``iterable`` argument to ``enumerate()``.
39+
40+
Closes #9875 (`#9875 <https://github.com/pylint-dev/pylint/issues/9875>`_)
41+
42+
- Fix to address indeterminacy of error message in case a module name is same as another in a separate namespace.
43+
44+
Refs #9883 (`#9883 <https://github.com/pylint-dev/pylint/issues/9883>`_)
45+
46+
47+
1748
What's new in Pylint 3.2.6?
1849
---------------------------
1950
Release date: 2024-07-21

doc/whatsnew/fragments/9840.false_positive

-3
This file was deleted.

doc/whatsnew/fragments/9865.bugfix

-3
This file was deleted.

doc/whatsnew/fragments/9875.bugfix

-3
This file was deleted.

doc/whatsnew/fragments/9883.bugfix

-3
This file was deleted.

pylint/__pkginfo__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from __future__ import annotations
1111

12-
__version__ = "3.2.6"
12+
__version__ = "3.2.7"
1313

1414

1515
def get_numversion_from_version(v: str) -> tuple[int, int, int]:

tbump.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/pylint-dev/pylint"
22

33
[version]
4-
current = "3.2.6"
4+
current = "3.2.7"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

towncrier.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.towncrier]
2-
version = "3.2.6"
2+
version = "3.2.7"
33
directory = "doc/whatsnew/fragments"
44
filename = "doc/whatsnew/3/3.2/index.rst"
55
template = "doc/whatsnew/fragments/_template.rst"

0 commit comments

Comments
 (0)