Automatically print list of contributors when generating tarball
authorNikolaus Rath <Nikolaus@rath.org>
Wed, 20 Sep 2017 17:17:49 +0000 (18:17 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 20 Sep 2017 17:17:49 +0000 (18:17 +0100)
make_release_tarball.sh

index 9825c9f3dadb3dcf14950e782b8437c3d0079d34..36b726cb760bee064c98df5f76988158b03c34a2 100755 (executable)
@@ -26,3 +26,8 @@ rm "${TAG}/make_release_tarball.sh" \
 cp -a doc/html "${TAG}/doc/"
 tar -cJf "${TAG}.tar.xz" "${TAG}/"
 gpg --armor --detach-sign "${TAG}.tar.xz"
+
+PREV_TAG="$(git tag --list 'fuse-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
+