blob: bb3c8f29a346e99584825bb2be35611e4f706e8f (
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.28..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 version 1.0.26 was skipped.
EOF
 |