#!/bin/sh
echo "MicroPython change log"
for t in $(git tag | grep -v -- '-rc1\|-preview' | sort -rV); do
echo ''
echo '========'
git show -s --format=%cD `git rev-list $t --max-count=1`
git tag -l $t -n9999
done