changelog format fix
[dbuscron] / genchangelog
1 #!/bin/sh
2 BUILD=${1%.0}
3
4 cat <<CHANGELOG > ./debian/changelog.new
5 dbuscron (${BUILD}-1) unstable; urgency=low
6
7   * Next release:
8
9 `git shortlog $(git describe --tags --abbrev=0)..HEAD | sed 's/^/    /'`
10
11  -- Konstantin Stepanov <kstep@p-nut.info>  `LC_ALL=C date +'%a, %e %b %Y %T %z'`
12
13 CHANGELOG
14
15 cat ./debian/changelog >> ./debian/changelog.new && mv -f ./debian/changelog.new ./debian/changelog
16