Add support for printing release contributors.
This commit is contained in:
parent
d193b19a8f
commit
14636931ac
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue