Skip to content

Commit 45d23ee

Browse files
Bump pylint to 2.14.0, update changelog
1 parent f35ad28 commit 45d23ee

File tree

10 files changed

+66
-20
lines changed

10 files changed

+66
-20
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ To ease the process of reviewing your PR, do make sure to complete the following
55
66
- [ ] Write a good description on what the PR does.
77
- [ ] If it's a new feature, or an important bug fix, add a What's New entry in
8-
``doc/whatsnew/2/2.14/summary.rst`` otherwise in ``doc/whatsnew/2/2.14/full.rst``.
8+
``doc/whatsnew/2/2.15/index.rst``.
99
- [ ] If you used multiple emails or multiple names when contributing, add your mails
1010
and preferred name in ``script/.contributors_aliases.json``
1111
-->

CONTRIBUTORS.txt

+6-4
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Maintainers
1919
- Marc Mueller <[email protected]>
2020
- Hippo91 <[email protected]>
2121
- Jacob Walls <[email protected]>
22+
- Matus Valo <[email protected]>
2223
- Andreas Finkler <[email protected]>
2324
- Łukasz Rogalski <[email protected]>
2425
- Ashley Whetter <[email protected]>
@@ -50,7 +51,7 @@ contributors:
5051
* wrong-spelling-in-comment
5152
* wrong-spelling-in-docstring
5253
* parallel execution on multiple CPUs
53-
- Matus Valo <matusvalo@users.noreply.github.com>
54+
- Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com>
5455
- Bruno Daniel <[email protected]>: check_docs extension.
5556
- Sushobhit <[email protected]> (sushobhit27)
5657
* Added new check 'comparison-with-itself'.
@@ -76,7 +77,6 @@ contributors:
7677
* redefined-variable-type
7778
- Alexandre Fayolle <[email protected]> (Logilab): TkInter gui, documentation, debian support
7879
- Nick Drozd <[email protected]>: performance improvements to astroid
79-
- Mark Byrne <[email protected]>
8080
- Julien Cristau <[email protected]> (Logilab): python 3 support
8181
- Adrien Di Mascio <[email protected]>
8282
- Frank Harrison <[email protected]> (doublethefish)
@@ -96,10 +96,10 @@ contributors:
9696
- Cezar Elnazli <[email protected]>: deprecated-method
9797
- Joseph Young <[email protected]> (jpy-git)
9898
- Nicolas Chauvat <[email protected]>
99+
- Tim Martin <[email protected]>
99100
- Radu Ciorba <[email protected]>: not-context-manager and confusing-with-statement warnings.
100101
- Holger Peters <[email protected]>
101102
- Cosmin Poieană <[email protected]>: unichr-builtin and improvements to bad-open-mode.
102-
- Tim Martin <[email protected]>
103103
- Steven Myint <[email protected]>: duplicate-except.
104104
- Peter Kolbus <[email protected]> (Garmin)
105105
- Luigi Bertaco Cristofolini <[email protected]> (luigibertaco)
@@ -160,6 +160,7 @@ contributors:
160160
- Takahide Nojima <[email protected]>
161161
- Taewon D. Kim <[email protected]>
162162
- Sneaky Pete <[email protected]>
163+
- Sergey B Kirpichev <[email protected]>
163164
- Rene Zhang <[email protected]>
164165
- Or Bahari <[email protected]>
165166
- Mr. Senko <[email protected]>
@@ -186,7 +187,6 @@ contributors:
186187
- chohner <[email protected]>
187188
- Tiago Honorato <[email protected]>
188189
- Steven M. Vascellaro <[email protected]>
189-
- Sergey B Kirpichev <[email protected]>
190190
- Roberto Leinardi <[email protected]>: PyCharm plugin maintainer
191191
- Ricardo Gemignani <[email protected]>
192192
- Pieter Engelbrecht <[email protected]>
@@ -290,6 +290,7 @@ contributors:
290290
291291
- paschich <[email protected]>
292292
293+
- nyabkun <[email protected]>
293294
294295
- mar-chi-pan <[email protected]>
295296
@@ -460,6 +461,7 @@ contributors:
460461
- Emmanuel Chaudron <[email protected]>
461462
- Elizabeth Bott <[email protected]>
462463
- Eisuke Kawashima <[email protected]> (e-kwsm)
464+
- Edward K. Ream <[email protected]>
463465
- Edgemaster <[email protected]>
464466
- Drew Risinger <[email protected]>
465467
- Dr. Nick <[email protected]>

doc/development_guide/contributor_guide/contribute.rst

+3-8
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,9 @@ your patch gets accepted:
1313
you access to the latest ``ast`` parser.
1414
- Install the dev dependencies, see :ref:`contributor_install`.
1515
- Use our test suite and write new tests, see :ref:`contributor_testing`.
16-
17-
- Add a short entry to the change log describing the change, except for internal
18-
implementation only changes.
19-
20-
- Not usually required, but for changes other than small bugs we also add a couple
21-
of sentences in the release document for that release, (:file:`doc/whatsnew/VERSION.rst`,
22-
`What's New` section). For the release document we usually write some more details,
23-
and it is also a good place to offer examples on how the new change is supposed to work.
16+
- Add an entry to the change log describing the change in `doc/whatsnew/2/VERSION/index.rst`.
17+
If necessary you can write details or offer examples on how the new change is supposed to
18+
work.
2419

2520
- Document your change, if it is a non-trivial one.
2621

doc/whatsnew/2/2.14/full.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
Full changelog
22
==============
33

4-
What's New in Pylint 2.14.0?
4+
What's New in Pylint 2.14.1?
55
----------------------------
66
Release date: TBA
77

88

9+
10+
What's New in Pylint 2.14.0?
11+
----------------------------
12+
Release date: 2022-06-01
13+
14+
915
* The refactoring checker now also raises 'consider-using-generator' messages for
1016
``max()``, ``min()`` and ``sum()``.
1117

doc/whatsnew/2/2.15/index.rst

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
***************************
2+
What's New in Pylint 2.15
3+
***************************
4+
5+
.. toctree::
6+
:maxdepth: 2
7+
8+
:Release: 2.15
9+
:Date: TBA
10+
11+
Summary -- Release highlights
12+
=============================
13+
14+
15+
New checkers
16+
============
17+
18+
19+
Removed checkers
20+
================
21+
22+
23+
Extensions
24+
==========
25+
26+
27+
False positives fixed
28+
=====================
29+
30+
31+
False negatives fixed
32+
=====================
33+
34+
35+
Other bug fixes
36+
===============
37+
38+
39+
Other Changes
40+
=============
41+
42+
43+
Internal changes
44+
================

doc/whatsnew/2/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
.. toctree::
88
:maxdepth: 2
99

10+
2.15/index
1011
2.14/index
1112
2.13/index
1213
2.12/index

examples/pylintrc

+1-2
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,7 @@ signature-mutators=
277277

278278
[EXCEPTIONS]
279279

280-
# Exceptions that will emit a warning when being caught. Defaults to
281-
# "BaseException, Exception".
280+
# Exceptions that will emit a warning when caught.
282281
overgeneral-exceptions=BaseException,
283282
Exception
284283

examples/pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,7 @@ max-statements = 50
259259
min-public-methods = 2
260260

261261
[tool.pylint.exceptions]
262-
# Exceptions that will emit a warning when being caught. Defaults to
263-
# "BaseException, Exception".
262+
# Exceptions that will emit a warning when caught.
264263
overgeneral-exceptions = ["BaseException", "Exception"]
265264

266265
[tool.pylint.format]

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.14.0-b1"
12+
__version__ = "2.14.0"
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.14.0-b1"
4+
current = "2.14.0"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

0 commit comments

Comments
 (0)