Skip to content
Merged
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
2 changes: 2 additions & 0 deletions src/changelist/_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,13 @@ def _format_contributor_section(
yield "\n"

yield f"{len(authors)} authors added to this release (alphabetically):\n"
yield "\n"
author_lines = map(self._format_user_line, authors)
yield from sorted(author_lines, key=lambda s: s.lower())
yield "\n"

yield f"{len(reviewers)} reviewers added to this release (alphabetically):\n"
yield "\n"
reviewers_lines = map(self._format_user_line, reviewers)
yield from sorted(reviewers_lines, key=lambda s: s.lower())
yield "\n"
Expand Down