blob: 6eca1b4b1104e0a56c486d6dda8acf16d18a11d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/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
|