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