Skip to content

Commit 7ac5a4d

Browse files
Pierre-Sassoulasjacobtylerwalls
authored andcommitted
Bump pylint to 3.3.6, update changelog
1 parent 32871c5 commit 7ac5a4d

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

CONTRIBUTORS.txt

+1
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@ contributors:
379379
- Yang Yang <[email protected]>
380380
- Xi Shen <[email protected]>
381381
- Winston H <[email protected]>
382+
- Wing Lian <[email protected]>
382383
- Will Shanks <[email protected]>
383384
- Viorel Știrbu <[email protected]>: intern-builtin warning.
384385
- VictorT <[email protected]>

doc/whatsnew/3/3.3/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.3.6?
18+
---------------------------
19+
Release date: 2025-03-20
20+
21+
22+
False Positives Fixed
23+
---------------------
24+
25+
- Fix a false positive for `used-before-assignment` when an inner function's return type
26+
annotation is a class defined at module scope.
27+
28+
Closes #9391 (`#9391 <https://github.com/pylint-dev/pylint/issues/9391>`_)
29+
30+
31+
1732
What's new in Pylint 3.3.5?
1833
---------------------------
1934
Release date: 2025-03-09

doc/whatsnew/fragments/9391.false_positive

-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.3.5"
12+
__version__ = "3.3.6"
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.3.5"
4+
current = "3.3.6"
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.3.5"
2+
version = "3.3.6"
33
directory = "doc/whatsnew/fragments"
44
filename = "doc/whatsnew/3/3.3/index.rst"
55
template = "doc/whatsnew/fragments/_template.rst"

0 commit comments

Comments
 (0)