diff options
Diffstat (limited to 'tools/create-changelog.sh')
-rwxr-xr-x | tools/create-changelog.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/tools/create-changelog.sh b/tools/create-changelog.sh index bb3c8f2..9c1fb5a 100755 --- a/tools/create-changelog.sh +++ b/tools/create-changelog.sh @@ -4,13 +4,15 @@ # # License: GPL-3.0+ -git log --date=iso8601 --decorate=short 1.0.28..HEAD \ - | sed 's/^[ \t]*$//' \ +git log --date=iso8601 --no-decorate --topo-order --abbrev=12 \ + $(git describe --tags --abbrev=0)..HEAD \ + | sed 's/[[:space:]]*$//' \ > 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. +Older entries are located in the ChangeLogs/ directory, which contains +a separate file for each release. (Please note: 1.0.26 and 1.1.0 were +skipped as release numbers.) EOF |