summaryrefslogtreecommitdiffstatshomepage
path: root/tools/gen-changelog.sh
blob: 4111348fb9cf8a7fb2033cd8ef8fc044e04840d1 (plain) (blame)
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 -- '-rc1\|-preview' | 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