mirror of
https://github.com/micropython/micropython.git
synced 2025-09-04 17:00:30 +02:00
13 lines
254 B
Bash
Executable File
13 lines
254 B
Bash
Executable File
#!/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
|