Skip to content

Commit 2bfbf83

Browse files
Bump pylint to 3.3.2, update changelog
1 parent 5597aae commit 2bfbf83

File tree

7 files changed

+19
-8
lines changed

7 files changed

+19
-8
lines changed

doc/whatsnew/3/3.3/index.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,20 @@ Summary -- Release highlights
1414

1515
.. towncrier release notes start
1616
17+
What's new in Pylint 3.3.2?
18+
---------------------------
19+
Release date: 2024-11-25
20+
21+
22+
Other Bug Fixes
23+
---------------
24+
25+
- Fixes the issue with --source-root option not working when the source files are in a subdirectory of the source root (e.g. when using a /src layout).
26+
27+
Closes #10026 (`#10026 <https://github.com/pylint-dev/pylint/issues/10026>`_)
28+
29+
30+
1731
What's new in Pylint 3.3.1?
1832
---------------------------
1933
Release date: 2024-09-24

doc/whatsnew/fragments/10026.bugfix

Lines changed: 0 additions & 3 deletions
This file was deleted.

examples/pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ prefer-stubs=no
9393

9494
# Minimum Python version to use for version dependent checks. Will default to
9595
# the version used to run pylint.
96-
py-version=3.10
96+
py-version=3.12
9797

9898
# Discover python modules and packages in the file system subtree.
9999
recursive=no

examples/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ persistent = true
8383

8484
# Minimum Python version to use for version dependent checks. Will default to the
8585
# version used to run pylint.
86-
py-version = "3.10"
86+
py-version = "3.12"
8787

8888
# Discover python modules and packages in the file system subtree.
8989
# recursive =

pylint/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from __future__ import annotations
1111

12-
__version__ = "3.3.1"
12+
__version__ = "3.3.2"
1313

1414

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

tbump.toml

Lines changed: 1 addition & 1 deletion
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.1"
4+
current = "3.3.2"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

towncrier.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.towncrier]
2-
version = "3.3.1"
2+
version = "3.3.2"
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)