Skip to content

Commit 3259bc8

Browse files
Bump pylint to 3.0.0a7, update changelog
1 parent 7264e33 commit 3259bc8

File tree

5 files changed

+24
-7
lines changed

5 files changed

+24
-7
lines changed

CONTRIBUTORS.txt

+11-5
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ Maintainers
1515
-----------
1616
- Pierre Sassoulas <[email protected]>
1717
- Daniël van Noord <[email protected]>
18-
- Marc Mueller <[email protected]>
1918
- Jacob Walls <[email protected]>
19+
- Marc Mueller <[email protected]>
2020
- Hippo91 <[email protected]>
2121
- Mark Byrne <[email protected]>
2222
- Andreas Finkler <[email protected]>
@@ -100,20 +100,20 @@ contributors:
100100
- Joseph Young <[email protected]> (jpy-git)
101101
- Tim Martin <[email protected]>
102102
103+
- Zen Lee <[email protected]>
103104
- Tushar Sadhwani <[email protected]> (tusharsadhwani)
104105
- Nicolas Chauvat <[email protected]>
105106
- orSolocate <[email protected]>
106-
- Zen Lee <[email protected]>
107107
- Radu Ciorba <[email protected]>: not-context-manager and confusing-with-statement warnings.
108108
- Holger Peters <[email protected]>
109109
- Cosmin Poieană <[email protected]>: unichr-builtin and improvements to bad-open-mode.
110+
- Yilei "Dolee" Yang <[email protected]>
110111
- Steven Myint <[email protected]>: duplicate-except.
111112
- Peter Kolbus <[email protected]> (Garmin)
112113
- Luigi Bertaco Cristofolini <[email protected]> (luigibertaco)
113114
- Glenn Matthews <[email protected]>:
114115
* autogenerated documentation for optional extensions,
115116
* bug fixes and enhancements for docparams (née check_docs) extension
116-
- Yilei "Dolee" Yang <[email protected]>
117117
- Vlad Temian <[email protected]>: redundant-unittest-assert and the JSON reporter.
118118
- Julien Jehannet <[email protected]>
119119
- Boris Feld <[email protected]>
@@ -245,6 +245,7 @@ contributors:
245245
- xmo-odoo <[email protected]>
246246
- tbennett0 <[email protected]>
247247
- omarandlorraine <[email protected]>
248+
- crazybolillo <[email protected]>
248249
- craig-sh <[email protected]>
249250
- bernie gray <[email protected]>
250251
- Wes Turner <[email protected]> (Google): added new check 'inconsistent-quotes'
@@ -327,9 +328,12 @@ contributors:
327328
- mar-chi-pan <[email protected]>
328329
- lrjball <[email protected]>
329330
- laike9m <[email protected]>
331+
- kyoto7250 <[email protected]>
330332
333+
- kdestin <[email protected]>
331334
- jaydesl <[email protected]>
332335
336+
- gracejiang16 <[email protected]>
333337
- glmdgrielson <[email protected]>
334338
- glegoux <[email protected]>
335339
- gaurikholkar <[email protected]>
@@ -364,6 +368,7 @@ contributors:
364368
- VictorT <[email protected]>
365369
- Victor Jiajunsu <[email protected]>
366370
- ViRuSTriNiTy <[email protected]>
371+
- Val Lorentz <[email protected]>
367372
- Trevor Bekolay <[email protected]>
368373
* Added --list-msgs-enabled command
369374
- Tomer Chachamu <[email protected]>: simplifiable-if-expression
@@ -439,6 +444,7 @@ contributors:
439444
- Michael Hudson-Doyle <[email protected]>
440445
- Michael Giuffrida <[email protected]>
441446
- Melvin Hazeleger <[email protected]>
447+
- Mehdi Drissi <[email protected]>
442448
- Matěj Grabovský <[email protected]>
443449
- Matthijs Blom <[email protected]>
444450
- Matej Marušák <[email protected]>
@@ -462,6 +468,7 @@ contributors:
462468
- Kian Meng, Ang <[email protected]>
463469
- Kevin Phillips <[email protected]>
464470
- Kevin Jing Qiu <[email protected]>
471+
- Kenneth Schackart <[email protected]>
465472
- Kayran Schmidt <[email protected]>
466473
- Karthik Nadig <[email protected]>
467474
- Jürgen Hermann <[email protected]>
@@ -492,6 +499,7 @@ contributors:
492499
- Jacques Kvam <[email protected]>
493500
- Jace Browning <[email protected]>: updated default report format with clickable paths
494501
- JT Olds <[email protected]>
502+
- Iggy Eom <[email protected]>
495503
- Hayden Richards <[email protected]>
496504
* Fixed "no-self-use" for async methods
497505
* Fixed "docparams" extension for async functions and methods
@@ -556,8 +564,6 @@ contributors:
556564
- Arun Persaud <[email protected]>
557565
- Arthur Lutz <[email protected]>
558566
- Antonio Ossa <[email protected]>
559-
- Antonio <[email protected]>
560-
- Antonio <[email protected]>
561567
- Anthony VEREZ <[email protected]>
562568
- Anthony Tan <[email protected]>
563569
- Anthony Foglia <[email protected]> (Google): Added simple string slots check.

doc/whatsnew/3/3.0/index.rst

+7
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@
1212
Summary -- Release highlights
1313
=============================
1414

15+
Note Bene for alpha users: Do not upgrade unless you want to
16+
test things out. Some changes will require a configuration change,
17+
that won't be compatible with 2.x. For example some extensions
18+
were removed in favor of a builtin message (``compare-to-zero``
19+
and ``compare-to-empty-string``). We'll make a configuration
20+
upgrade tool available before 3.0.0 is out.
21+
1522
Pylint now provides some important usability and performance improvements,
1623
along with enacting necessary breaking changes and long-announced deprecations.
1724

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.0b1"
12+
__version__ = "3.0.0a7"
1313

1414

1515
def get_numversion_from_version(v: str) -> tuple[int, int, int]:

script/.contributors_aliases.json

+4
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,10 @@
189189
190190
"name": "Andrew J. Simmons"
191191
},
192+
193+
194+
"name": "crazybolillo"
195+
},
192196
193197
"mails": [
194198

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

0 commit comments

Comments
 (0)