Add support for printing release contributors.

This commit is contained in:
Nikolaus Rath 2017-09-20 18:07:29 +01:00
parent d193b19a8f
commit 14636931ac
1 changed files with 5 additions and 0 deletions

View File

@ -22,3 +22,8 @@ rm "${TAG}/make_release_tarball.sh" \
"${TAG}/test/travis-*.sh"
tar -cJf "${TAG}.tar.xz" "${TAG}/"
gpg --armor --detach-sign "${TAG}.tar.xz"
PREV_TAG="$(git tag --list 'sshfs-3*' --sort=-taggerdate --merged "${TAG}^"| head -1)"
echo "Contributors from ${PREV_TAG} to ${TAG}:"
git log --pretty="format:%an <%aE>" "${PREV_TAG}..${TAG}" | sort -u