aboutsummaryrefslogtreecommitdiff
path: root/circuitpython/tools/gen-changelog.sh
blob: b29606b0c784dd5f2b224b07b8d4010d25ca2985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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