Skip to content
Open
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
1 change: 1 addition & 0 deletions packages/s/stlab/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ package("stlab")

add_urls("https://github.com/stlab/libraries/archive/refs/tags/$(version).tar.gz",
"https://github.com/stlab/libraries.git")
add_versions("v2.1.4", "34f3b96fb4896e72de218967e41d9090a5fc24e868d125ba61e5ac9570e8964a")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While this correctly adds the new version, it places it at the top, resulting in a descending sort order. Other packages in this repository (e.g., cmake) use an ascending sort order for versions. To improve consistency and maintainability across the repository, it would be best to enforce a single sorting convention. The current auto-update script behavior of prepending new versions seems to be the cause of this inconsistency when different files have different initial sorting.

add_versions("v1.6.2", "d0369d889c7bf78068d0c4f4b5125d7e9fe9abb0ad7a3be35bf13b6e2c271676")

add_deps("cmake")
Expand Down
Loading