Skip to content

Commit ae730ac

Browse files
Bump pylint to 3.2.5, update changelog (#9756)
1 parent be7b5cc commit ae730ac

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

doc/whatsnew/3/3.2/index.rst

+15
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,21 @@ Summary -- Release highlights
1414

1515
.. towncrier release notes start
1616
17+
What's new in Pylint 3.2.5?
18+
---------------------------
19+
Release date: 2024-06-28
20+
21+
22+
Other Bug Fixes
23+
---------------
24+
25+
- Fixed a false positive ``unreachable-code`` when using ``typing.Any`` as return type in python
26+
3.8, the ``typing.NoReturn`` are not taken into account anymore for python 3.8 however.
27+
28+
Closes #9751 (`#9751 <https://github.com/pylint-dev/pylint/issues/9751>`_)
29+
30+
31+
1732
What's new in Pylint 3.2.4?
1833
---------------------------
1934
Release date: 2024-06-26

doc/whatsnew/fragments/9751.bugfix

-4
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.4"
12+
__version__ = "3.2.5"
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.4"
4+
current = "3.2.5"
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.4"
2+
version = "3.2.5"
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)