You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
243 B
12 lines
243 B
#!/bin/sh
|
|
|
|
echo "MicroPython change log"
|
|
|
|
for t in $(git tag | grep -v v1.0-rc1 | sort -rV); do
|
|
echo ''
|
|
echo '========'
|
|
echo ''
|
|
git show -s --format=%cD `git rev-list $t --max-count=1`
|
|
echo ''
|
|
git tag -l $t -n9999
|
|
done
|
|
|