diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2023-02-12 17:36:29 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2023-02-12 17:36:29 +0100 |
commit | 882fd010527b8d8823f09e19edbed3746265fa08 (patch) | |
tree | be5c7cace6697afc753c152d13ad5145d0884a42 /tools/create-changelog.sh | |
parent | 527bedac30eb120915718eb7997e6dacd583512e (diff) | |
parent | e0d94cf4d39395df1e2c6bb4d967200298c13881 (diff) |
Merge branch 'feature/upstream' into develop
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 |