summaryrefslogtreecommitdiff
path: root/tools/create-changelog.sh
blob: a0b8d9170443cce60542347ce3922d0cebce2942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -u
# tools/create-changelog.sh -- for inclusion in source tarballs
# Copyright (C) 2019  Olaf Meeuwissen
#
# License: GPL-3.0+

git log --date=iso8601 --decorate=short 1.0.27..HEAD \
    | sed 's/^[ \t]*$//' \
    > ChangeLog

cat << EOF >> ChangeLog

----------------------------------------------------------------------
Older ChangeLog entries can be found in the ChangeLogs/ directory on a
file per release basis.  Please note that 1.0.26 was never released.
EOF