Skip to content

Commit 24f43a1

Browse files
Bump pylint to 3.0.0a8, update changelog
1 parent 65959d3 commit 24f43a1

File tree

5 files changed

+18
-10
lines changed

5 files changed

+18
-10
lines changed

CONTRIBUTORS.txt

+10-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ Maintainers
2424
- Dani Alcala <[email protected]>
2525
- Łukasz Rogalski <[email protected]>
2626
- Ashley Whetter <[email protected]>
27+
- Nick Drozd <[email protected]>: performance improvements to astroid
2728
- Bryce Guinta <[email protected]>
2829
- Yu Shao, Pang <[email protected]>
29-
- Nick Drozd <[email protected]>: performance improvements to astroid
3030
- Dimitri Prybysh <[email protected]>
3131
* multiple-imports, not-iterable, not-a-mapping, various patches.
3232
- Roy Williams <[email protected]> (Lyft)
@@ -157,6 +157,8 @@ contributors:
157157
* Added new useless-return checker,
158158
* Added new try-except-raise checker
159159
- Téo Bouvard <[email protected]>
160+
- Stavros Ntentos <[email protected]>
161+
- Nicolas Boulenguez <[email protected]>
160162
- Mihai Balint <[email protected]>
161163
- Mark Bell <[email protected]>
162164
- Levi Gruspe <[email protected]>
@@ -172,7 +174,6 @@ contributors:
172174
- jpkotta <[email protected]>
173175
- Takahide Nojima <[email protected]>
174176
- Taewon D. Kim <[email protected]>
175-
- Stavros Ntentos <[email protected]>
176177
- Sneaky Pete <[email protected]>
177178
- Sergey B Kirpichev <[email protected]>
178179
- Sandro Tosi <[email protected]>: Debian packaging
@@ -205,6 +206,7 @@ contributors:
205206
- Alexey Pelykh <[email protected]>
206207
207208
- jessebrennan <[email protected]>
209+
- crazybolillo <[email protected]>
208210
- chohner <[email protected]>
209211
- Tiago Honorato <[email protected]>
210212
- Steven M. Vascellaro <[email protected]>
@@ -245,7 +247,6 @@ contributors:
245247
- xmo-odoo <[email protected]>
246248
- tbennett0 <[email protected]>
247249
- omarandlorraine <[email protected]>
248-
- crazybolillo <[email protected]>
249250
- craig-sh <[email protected]>
250251
- bernie gray <[email protected]>
251252
- Wes Turner <[email protected]> (Google): added new check 'inconsistent-quotes'
@@ -378,9 +379,11 @@ contributors:
378379
- Tim Gates <[email protected]>
379380
- Théo Battrel <[email protected]>
380381
- Thomas Benhamou <[email protected]>
382+
- Theodore Ni <[email protected]>
381383
- Tanvi Moharir <[email protected]>: Fix for invalid toml config
382384
- T.Rzepka <[email protected]>
383385
- Svetoslav Neykov <[email protected]>
386+
- SubaruArai <[email protected]>
384387
- Stéphane Wirtel <[email protected]>: nonlocal-without-binding
385388
- Stephen Longofono <[email protected]>
386389
- Stephane Odul <[email protected]>
@@ -429,6 +432,7 @@ contributors:
429432
- Niko Wenselowski <[email protected]>
430433
- Nikita Sobolev <[email protected]>
431434
- Nick Smith <[email protected]>
435+
- Neowizard <[email protected]>
432436
- Ned Batchelder <[email protected]>
433437
- Natalie Serebryakova <[email protected]>
434438
@@ -532,6 +536,7 @@ contributors:
532536
- Daniele Procida <[email protected]>
533537
- Daniela Plascencia <[email protected]>
534538
- Daniel Werner <[email protected]>
539+
- Daniel Wang <[email protected]>
535540
- Daniel R. Neal <[email protected]> (danrneal)
536541
- Daniel Draper <[email protected]>
537542
- Daniel Dorani <[email protected]> (doranid)
@@ -580,11 +585,13 @@ contributors:
580585
- Alex Mor <[email protected]>
581586
- Alex Jurkiewicz <[email protected]>
582587
- Alex Hearn <[email protected]>
588+
- Aleksander Mamla <[email protected]>
583589
- Alan Evangelista <[email protected]>
584590
- Alan Chan <[email protected]>
585591
- Aivar Annamaa <[email protected]>
586592
- Aidan Haase <[email protected]>
587593
- Ahirnish Pareek <[email protected]>: 'keyword-arg-before-var-arg' check
594+
- Agustin Marquez <[email protected]>
588595
- Adrian Chirieac <[email protected]>
589596
- Aditya Gupta <[email protected]> (adityagupta1089)
590597
* Added ignore_signatures to duplicate checker

examples/pylintrc

+3-2
Original file line numberDiff line numberDiff line change
@@ -482,8 +482,9 @@ evaluation=max(0, 0 if fatal else 10.0 - ((float(5 * error + warning + refactor
482482
# used to format the message information. See doc for all details.
483483
msg-template=
484484

485-
# Set the output format. Available formats are text, parseable, colorized, json
486-
# and msvs (visual studio). You can also give a reporter class, e.g.
485+
# Set the output format. Available formats are: text, parseable, colorized,
486+
# json2 (improved json format), json (old json format) and msvs (visual
487+
# studio). You can also give a reporter class, e.g.
487488
# mypackage.mymodule.MyReporterClass.
488489
#output-format=
489490

examples/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -406,9 +406,9 @@ evaluation = "max(0, 0 if fatal else 10.0 - ((float(5 * error + warning + refact
406406
# used to format the message information. See doc for all details.
407407
# msg-template =
408408

409-
# Set the output format. Available formats are text, parseable, colorized, json
410-
# and msvs (visual studio). You can also give a reporter class, e.g.
411-
# mypackage.mymodule.MyReporterClass.
409+
# Set the output format. Available formats are: text, parseable, colorized, json2
410+
# (improved json format), json (old json format) and msvs (visual studio). You
411+
# can also give a reporter class, e.g. mypackage.mymodule.MyReporterClass.
412412
# output-format =
413413

414414
# Tells whether to display a full report or only the messages.

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

0 commit comments

Comments
 (0)