Skip to content

Commit fb2006c

Browse files
committed
tools: Make gen-changelog.sh sort version strings correctly.
1 parent 79dc0a0 commit fb2006c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/gen-changelog.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
echo "Micro Python change log"
44

5-
for t in $(git tag | grep -v v1.0-rc1 | sort -r); do
5+
for t in $(git tag | grep -v v1.0-rc1 | sort -rV); do
66
echo ''
77
echo '========'
88
echo ''

0 commit comments

Comments
 (0)