Skip to content

Commit 08bac36

Browse files
Bump pylint to 2.16.3, update changelog (#8375)
1 parent 3dfa14f commit 08bac36

File tree

6 files changed

+27
-9
lines changed

6 files changed

+27
-9
lines changed

doc/whatsnew/2/2.16/index.rst

+24
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,30 @@ Last but not least @clavedeluna and @nickdrozd became triagers, welcome to the t
3232

3333
.. towncrier release notes start
3434
35+
What's new in Pylint 2.16.3?
36+
----------------------------
37+
Release date: 2023-03-03
38+
39+
40+
False Positives Fixed
41+
---------------------
42+
43+
- Fix false positive for ``wrong-spelling-in-comment`` with class names in a
44+
python 2 type comment.
45+
46+
Closes #8370 (`#8370 <https://github.com/PyCQA/pylint/issues/8370>`_)
47+
48+
49+
50+
Other Bug Fixes
51+
---------------
52+
53+
- Prevent emitting ``invalid-name`` for the line on which a ``global``
54+
statement is declared.
55+
56+
Closes #8307 (`#8307 <https://github.com/PyCQA/pylint/issues/8307>`_)
57+
58+
3559
What's new in Pylint 2.16.2?
3660
----------------------------
3761
Release date: 2023-02-13

doc/whatsnew/fragments/8307.bugfix

-3
This file was deleted.

doc/whatsnew/fragments/8370.false_positive

-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__ = "2.16.2"
12+
__version__ = "2.16.3"
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/PyCQA/pylint"
22

33
[version]
4-
current = "2.16.2"
4+
current = "2.16.3"
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 = "2.16.2"
2+
version = "2.16.3"
33
directory = "doc/whatsnew/fragments"
44
filename = "doc/whatsnew/2/2.16/index.rst"
55
template = "doc/whatsnew/fragments/_template.rst"

0 commit comments

Comments
 (0)