Skip to content
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 <[email protected]>
- Julien Jehannet <[email protected]>
- Calen Pennington <[email protected]>
- Tushar Sadhwani <[email protected]>
- Tushar Sadhwani <[email protected]> <[email protected]>
- Hugo van Kemenade <[email protected]>
- Tim Martin <[email protected]>
- Phil Schaf <[email protected]>
Expand Down Expand Up @@ -186,6 +186,7 @@ Contributors
- Alexander Scheel <[email protected]>
- Alexander Presnyakov <[email protected]>
- Ahmed Azzaoui <[email protected]>
- alm <[email protected]

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"
},
"[email protected]": {
"mails": [
"[email protected]",
"[email protected]"
],
"name": "Tushar Sadhwani"
},
"[email protected]": {
"mails": ["[email protected]", "[email protected]"],
"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