Skip to content

Commit

Permalink
Have release script present releases in order
Browse files Browse the repository at this point in the history
Have check-release.py list all releases in version order (not
lexically sorted).

Signed-off-by: Mattias Rönnblom <[email protected]>
  • Loading branch information
m-ronnblom committed May 29, 2024
1 parent 51cce8e commit dfd34ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/check-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def check_meta(repo, release_commit):
print(" Previous release: %s (API %s)" % (prev_impl_version,
prev_api_version))
print("Releases:")
for version in get_release_versions(repo):
for version in sorted(get_release_versions(repo)):
print(" %s" % version)

validate_against_prev(api_version, impl_version,
Expand Down

0 comments on commit dfd34ea

Please sign in to comment.