Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3.0.0a1 #2151

Merged
merged 4 commits into from
Apr 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Contributors
- David Gilman <davidgilman1@gmail.com>
- Julien Jehannet <julien.jehannet@logilab.fr>
- Calen Pennington <calen.pennington@gmail.com>
- Tushar Sadhwani <86737547+tushar-deepsource@users.noreply.github.com>
- Tushar Sadhwani <tushar.sadhwani000@gmail.com> <86737547+tushar-deepsource@users.noreply.github.com>
- Hugo van Kemenade <hugovk@users.noreply.github.com>
- Tim Martin <tim@asymptotic.co.uk>
- Phil Schaf <flying-sheep@web.de>
Expand Down Expand Up @@ -186,6 +186,7 @@ Contributors
- Alexander Scheel <alexander.m.scheel@gmail.com>
- Alexander Presnyakov <flagist0@gmail.com>
- Ahmed Azzaoui <ahmed.azzaoui@engie.com>
- alm <alonme@users.noreply.github.com

Co-Author
---------
Expand Down
2 changes: 1 addition & 1 deletion astroid/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE
# Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt

__version__ = "2.16.0dev0"
__version__ = "3.0.0a2-dev0"
version = __version__
7 changes: 7 additions & 0 deletions script/.contributors_aliases.json
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,13 @@
"name": "Sylvain Thénault",
"team": "Ex-maintainers"
},
"tushar.sadhwani000@gmail.com": {
"mails": [
"tushar.sadhwani000@gmail.com",
"86737547+tushar-deepsource@users.noreply.github.com"
],
"name": "Tushar Sadhwani"
},
"ville.skytta@iki.fi": {
"mails": ["ville.skytta@iki.fi", "ville.skytta@upcloud.com"],
"name": "Ville Skyttä"
Expand Down
2 changes: 1 addition & 1 deletion script/bump_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def main() -> None:
if args.verbose:
logging.basicConfig(level=logging.DEBUG)
logging.debug(f"Launching bump_changelog with args: {args}")
if "dev" in args.version:
if any(s in args.version for s in ("dev", "a", "b")):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can be ported to pylint

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure that's necessary. The version parsing in pylint is a bit more forgiving.
https://github.com/pylint-dev/pylint/blob/9d629b816eb0f13cd44929b7baa9110b53b0251c/script/bump_changelog.py#L51-L60

return
with open(DEFAULT_CHANGELOG_PATH, encoding="utf-8") as f:
content = f.read()
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github_url = "https://github.com/pylint-dev/astroid"

[version]
current = "2.16.0dev0"
current = "3.0.0a2-dev0"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down