Skip to content

Commit 31f348f

Browse files
Bump pylint to 3.0.0b0, update changelog
1 parent 5af65e4 commit 31f348f

File tree

5 files changed

+19
-11
lines changed

5 files changed

+19
-11
lines changed

CONTRIBUTORS.txt

+11-4
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]>
@@ -170,9 +172,9 @@ contributors:
170172
- Andreas Freimuth <[email protected]>: fix indentation checking with tabs
171173
- Alexandru Coman <[email protected]>
172174
- jpkotta <[email protected]>
175+
- crazybolillo <[email protected]>
173176
- Takahide Nojima <[email protected]>
174177
- Taewon D. Kim <[email protected]>
175-
- Stavros Ntentos <[email protected]>
176178
- Sneaky Pete <[email protected]>
177179
- Sergey B Kirpichev <[email protected]>
178180
- Sandro Tosi <[email protected]>: Debian packaging
@@ -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
@@ -503,6 +507,7 @@ contributors:
503507
- Hayden Richards <[email protected]>
504508
* Fixed "no-self-use" for async methods
505509
* Fixed "docparams" extension for async functions and methods
510+
- Hashem Nasarat <[email protected]>
506511
- Harshil <[email protected]>
507512
508513
- Grégoire <[email protected]>
@@ -532,6 +537,7 @@ contributors:
532537
- Daniele Procida <[email protected]>
533538
- Daniela Plascencia <[email protected]>
534539
- Daniel Werner <[email protected]>
540+
- Daniel Wang <[email protected]>
535541
- Daniel R. Neal <[email protected]> (danrneal)
536542
- Daniel Draper <[email protected]>
537543
- Daniel Dorani <[email protected]> (doranid)
@@ -564,7 +570,6 @@ contributors:
564570
- Arun Persaud <[email protected]>
565571
- Arthur Lutz <[email protected]>
566572
- Antonio Ossa <[email protected]>
567-
- Antonio <[email protected]>
568573
- Anthony VEREZ <[email protected]>
569574
- Anthony Tan <[email protected]>
570575
- Anthony Foglia <[email protected]> (Google): Added simple string slots check.
@@ -581,11 +586,13 @@ contributors:
581586
- Alex Mor <[email protected]>
582587
- Alex Jurkiewicz <[email protected]>
583588
- Alex Hearn <[email protected]>
589+
- Aleksander Mamla <[email protected]>
584590
- Alan Evangelista <[email protected]>
585591
- Alan Chan <[email protected]>
586592
- Aivar Annamaa <[email protected]>
587593
- Aidan Haase <[email protected]>
588594
- Ahirnish Pareek <[email protected]>: 'keyword-arg-before-var-arg' check
595+
- Agustin Marquez <[email protected]>
589596
- Adrian Chirieac <[email protected]>
590597
- Aditya Gupta <[email protected]> (adityagupta1089)
591598
* 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.0b0"
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.0b0"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

0 commit comments

Comments
 (0)