tools: Make gen-changelog.sh sort version strings correctly.

This commit is contained in:
Damien George 2015-02-13 13:31:02 +00:00
parent 79dc0a0886
commit fb2006cc69
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
echo "Micro Python change log"
for t in $(git tag | grep -v v1.0-rc1 | sort -r); do
for t in $(git tag | grep -v v1.0-rc1 | sort -rV); do
echo ''
echo '========'
echo ''