Skip to content

Commit

Permalink
Add support for printing release contributors.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikratio committed Sep 20, 2017
1 parent d193b19 commit 1463693
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions make_release_tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 1463693

Please sign in to comment.