2014-12-29 14:03:25 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-06-03 18:40:05 -04:00
|
|
|
# SPDX-FileCopyrightText: 2014 MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors)
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2015-10-11 19:06:25 -04:00
|
|
|
echo "MicroPython change log"
|
2014-12-29 14:03:25 -05:00
|
|
|
|
2015-02-13 08:31:02 -05:00
|
|
|
for t in $(git tag | grep -v v1.0-rc1 | sort -rV); do
|
2014-12-29 14:03:25 -05:00
|
|
|
echo ''
|
|
|
|
echo '========'
|
|
|
|
echo ''
|
|
|
|
git show -s --format=%cD `git rev-list $t --max-count=1`
|
|
|
|
echo ''
|
2015-08-11 08:50:40 -04:00
|
|
|
git tag -l $t -n9999
|
2014-12-29 14:03:25 -05:00
|
|
|
done
|