1#!/bin/sh -u 2# tools/create-changelog.sh -- for inclusion in source tarballs 3# Copyright (C) 2019 Olaf Meeuwissen 4# 5# License: GPL-3.0+ 6 7git log --date=iso8601 --no-decorate --topo-order --abbrev=12 \ 8 $(git describe --tags --abbrev=0)..HEAD \ 9 | sed 's/[[:space:]]*$//' \ 10 > ChangeLog 11 12cat << EOF >> ChangeLog 13 14---------------------------------------------------------------------- 15Older entries are located in the ChangeLogs/ directory, which contains 16a separate file for each release. (Please note: 1.0.26 and 1.1.0 were 17skipped as release numbers.) 18EOF 19