summaryrefslogtreecommitdiffstatshomepage
path: root/tools/gen-changelog.sh
blob: ed7d7c0fe0373fdcd48fc1e525053ee1c8b094c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

echo "Micro Python change log"

for t in $(git tag | grep -v v1.0-rc1 | sort -r); do
    echo ''
    echo '========'
    echo ''
    git show -s --format=%cD `git rev-list $t --max-count=1`
    echo ''
    git tag -l $t -n99
done