Skip to content

Commit 5716ad1

Browse files
Bump pylint to 2.15.2, update changelog
1 parent 49b5d5d commit 5716ad1

File tree

5 files changed

+19
-12
lines changed

5 files changed

+19
-12
lines changed

CONTRIBUTORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,7 @@ contributors:
483483
- Eisuke Kawashima <[email protected]>
484484
- Edward K. Ream <[email protected]>
485485
- Edgemaster <[email protected]>
486+
- Drummond Ogilvie <[email protected]>
486487
- Drew Risinger <[email protected]>
487488
- Dr. Nick <[email protected]>
488489
- Don Jayamanne <[email protected]>

doc/whatsnew/2/2.15/index.rst

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,18 @@ Marc Byrne became a maintainer, welcome to the team !
3030
.. towncrier release notes start
3131
3232
33-
What's new in Pylint 2.15.1?
33+
What's new in Pylint 2.15.2?
3434
----------------------------
35-
Release date: 2022-09-06
35+
Release date: 2022-09-07
36+
37+
- Fixed a case where custom plugins specified by command line could silently fail.
3638

39+
Specifically, if a plugin relies on the ``init-hook`` option changing ``sys.path`` before
40+
it can be imported, this will now emit a ``bad-plugin-value`` message. Before this
41+
change, it would silently fail to register the plugin for use, but would load
42+
any configuration, which could have unintended effects.
43+
44+
Fixes part of #7264. (`#7264 <https://github.com/PyCQA/pylint/issues/7264>`_)
3745
- Fix ``used-before-assignment`` for functions/classes defined in type checking guard.
3846

3947
Closes #7368 (`#7368 <https://github.com/PyCQA/pylint/issues/7368>`_)
@@ -70,6 +78,12 @@ Release date: 2022-09-06
7078

7179
Closes #7380 (`#7380 <https://github.com/PyCQA/pylint/issues/7380>`_)
7280

81+
What's new in Pylint 2.15.1?
82+
----------------------------
83+
Release date: 2022-09-06
84+
85+
This is a "github only release", it was mistakenly released as ``2.16.0-dev`` on pypi. Replaced by ``2.15.2``.
86+
7387
What's new in Pylint 2.15.0?
7488
----------------------------
7589

doc/whatsnew/fragments/7264.bugfix

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

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__ = "2.16.0-dev"
12+
__version__ = "2.15.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/PyCQA/pylint"
22

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

0 commit comments

Comments
 (0)