Make changelog easy to parse (#6711)

This commit is contained in:
Jakub Kuczys
2026-05-10 22:11:36 +02:00
committed by GitHub
parent cbd4643bd3
commit 7305f44f68
8 changed files with 968 additions and 138 deletions
+1 -6
View File
@@ -965,12 +965,7 @@ def cli_contributors(version: str, *, show_not_merged: bool = False) -> None:
def get_contributors(version: str, *, show_not_merged: bool = False) -> None:
print(
", ".join(
f":ghuser:`{username}`"
for username in _get_contributors(version, show_not_merged=show_not_merged)
)
)
print(*_get_contributors(version, show_not_merged=show_not_merged))
def _get_contributors(version: str, *, show_not_merged: bool = False) -> List[str]: