Skip to content

Commit e3fa827

Browse files
committed
tools: Add script to generate a ChangeLog file.
We don't have an explicit ChangeLog file, but don't really need one because we use a good version control system. This script is useful if you need a pretty-printed ChangeLog for some reason.
1 parent 9ddbe29 commit e3fa827

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

tools/gen-changelog.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
3+
echo "Micro Python change log"
4+
5+
for t in $(git tag | grep -v v1.0-rc1 | sort -r); do
6+
echo ''
7+
echo '========'
8+
echo ''
9+
git show -s --format=%cD `git rev-list $t --max-count=1`
10+
echo ''
11+
git tag -l $t -n99
12+
done

0 commit comments

Comments
 (0)