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
8 changes: 6 additions & 2 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Ex-maintainers
Maintainers
-----------
- Pierre Sassoulas <pierre.sassoulas@gmail.com>
- Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
- Jacob Walls <jacobtylerwalls@gmail.com>
- Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
- Marc Mueller <30130371+cdce8p@users.noreply.github.com>
- Hippo91 <guillaume.peillex@gmail.com>
- Bryce Guinta <bryce.paul.guinta@gmail.com>
Expand Down Expand Up @@ -47,6 +47,7 @@ Contributors
- Calen Pennington <calen.pennington@gmail.com>
- Antonio <antonio@zoftko.com>
- Akhil Kamat <akhil.kamat@gmail.com>
- Zen Lee <53538590+zenlyj@users.noreply.github.com>
- Tim Martin <tim@asymptotic.co.uk>
- Phil Schaf <flying-sheep@web.de>
- Alex Hall <alex.mojaki@gmail.com>
Expand Down Expand Up @@ -78,13 +79,13 @@ Contributors
- emile@crater.logilab.fr <emile@crater.logilab.fr>
- doranid <ddandd@gmail.com>
- brendanator <brendan.maginnis@gmail.com>
- Zen Lee <53538590+zenlyj@users.noreply.github.com>
- Tomas Gavenciak <gavento@ucw.cz>
- Tim Paine <t.paine154@gmail.com>
- Thomas Hisch <t.hisch@gmail.com>
- Stefan Scherfke <stefan@sofa-rockers.org>
- Sergei Lebedev <185856+superbobry@users.noreply.github.com>
- Saugat Pachhai (सौगात) <suagatchhetri@outlook.com>
- Robert Hofer <1058012+hofrob@users.noreply.github.com>
- Ram Rachum <ram@rachum.com>
- Pierre-Yves David <pierre-yves.david@logilab.fr>
- Peter Pentchev <roam@ringlet.net>
Expand All @@ -100,6 +101,7 @@ Contributors
- John Vandenberg <jayvdb@gmail.com>
- Jacob Bogdanov <jacob@bogdanov.dev>
- Google, Inc. <no-reply@google.com>
- Emmanuel Ferdman <emmanuelferdman@gmail.com>
- David Euresti <github@euresti.com>
- David Douard <david.douard@logilab.fr>
- David Cain <davidjosephcain@gmail.com>
Expand Down Expand Up @@ -222,3 +224,5 @@ under this name, or we did not manage to find their commits in the history.
- carl
- alain lefroy
- Mark Gius
- Robert Hofer <1058012+hofrob@users.noreply.github.com>
- Emmanuel Ferdman <emmanuelferdman@gmail.com>
16 changes: 14 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,22 @@ astroid's ChangeLog
===================


What's New in astroid 4.0.0?
What's New in astroid 4.1.0?
============================
Release date: TBA



What's New in astroid 4.0.1?
============================
Release date: TBA



What's New in astroid 4.0.0?
============================
Release date: 2025-10-05

* Support constraints from ternary expressions in inference.

Closes pylint-dev/pylint#9729
Expand Down Expand Up @@ -84,7 +96,7 @@ Release date: TBA

* Add basic support for ``ast.TemplateStr`` and ``ast.Interpolation``added in Python 3.14.

refs #2789
Refs #2789

* Add support for type parameter defaults added in Python 3.13.

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__ = "4.0.0rc1-dev0"
__version__ = "4.1.0-dev0"
version = __version__
12 changes: 8 additions & 4 deletions script/.contributors_aliases.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
],
"name": "Artem Yurchenko"
},
"53538590+zenlyj@users.noreply.github.com": {
"mails": ["53538590+zenlyj@users.noreply.github.com", "zenlyj97@gmail.com"],
"name": "Zen Lee"
},
"55152140+jayaddison@users.noreply.github.com": {
"mails": ["55152140+jayaddison@users.noreply.github.com", "jay@jp-hosting.net"],
"name": "James Addison"
Expand Down Expand Up @@ -86,10 +90,6 @@
"mails": ["c.ringstrom@gmail.com"],
"name": "Charlie Ringström"
},
"matusvalo@users.noreply.github.com": {
"mails": ["matusvalo@users.noreply.github.com"],
"name": "Matus Valo"
},
"calen.pennington@gmail.com": {
"mails": ["cale@edx.org", "calen.pennington@gmail.com"],
"name": "Calen Pennington"
Expand Down Expand Up @@ -149,6 +149,10 @@
"mails": ["mcorcherojim@bloomberg.net", "mariocj89@gmail.com"],
"name": "Mario Corchero"
},
"matusvalo@users.noreply.github.com": {
"mails": ["matusvalo@users.noreply.github.com"],
"name": "Matus Valo"
},
"me@the-compiler.org": {
"mails": ["me@the-compiler.org"],
"name": "Florian Bruhin",
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 = "4.0.0rc1-dev0"
current = "4.1.0-dev0"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down