17 lines
413 B
Bash
Executable File
17 lines
413 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: 2014 MicroPython & CircuitPython contributors (https://github.com/adafruit/circuitpython/graphs/contributors)
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
echo "MicroPython change log"
|
|
|
|
for t in $(git tag | grep -v v1.0-rc1 | 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
|