Skip to content

Commit 306e8fb

Browse files
authored
Merge pull request #2151 from pylint-dev/release-3.0.0a1
Release 3.0.0a1
2 parents f13b247 + 9483df1 commit 306e8fb

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CONTRIBUTORS.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Contributors
4040
- David Gilman <[email protected]>
4141
- Julien Jehannet <[email protected]>
4242
- Calen Pennington <[email protected]>
43-
- Tushar Sadhwani <[email protected]>
43+
4444
- Hugo van Kemenade <[email protected]>
4545
- Tim Martin <[email protected]>
4646
- Phil Schaf <[email protected]>
@@ -186,6 +186,7 @@ Contributors
186186
- Alexander Scheel <[email protected]>
187187
- Alexander Presnyakov <[email protected]>
188188
- Ahmed Azzaoui <[email protected]>
189+
189190

190191
Co-Author
191192
---------

astroid/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE
33
# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt
44

5-
__version__ = "2.16.0dev0"
5+
__version__ = "3.0.0a2-dev0"
66
version = __version__

script/.contributors_aliases.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,13 @@
165165
"name": "Sylvain Thénault",
166166
"team": "Ex-maintainers"
167167
},
168+
169+
"mails": [
170+
171+
172+
],
173+
"name": "Tushar Sadhwani"
174+
},
168175
169176
170177
"name": "Ville Skyttä"

script/bump_changelog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def main() -> None:
3434
if args.verbose:
3535
logging.basicConfig(level=logging.DEBUG)
3636
logging.debug(f"Launching bump_changelog with args: {args}")
37-
if "dev" in args.version:
37+
if any(s in args.version for s in ("dev", "a", "b")):
3838
return
3939
with open(DEFAULT_CHANGELOG_PATH, encoding="utf-8") as f:
4040
content = f.read()

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/pylint-dev/astroid"
22

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

0 commit comments

Comments
 (0)