summaryrefslogtreecommitdiff
path: root/tools/create-changelog.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/create-changelog.sh')
-rwxr-xr-xtools/create-changelog.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/create-changelog.sh b/tools/create-changelog.sh
new file mode 100755
index 0000000..a0b8d91
--- /dev/null
+++ b/tools/create-changelog.sh
@@ -0,0 +1,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