mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-10 15:26:18 -04:00
13 lines
636 B
Bash
Executable file
13 lines
636 B
Bash
Executable file
#!/bin/bash
|
|
|
|
export LAST_VERSION="$1"
|
|
|
|
allcontributors="$(git shortlog -sn $LAST_VERSION..HEAD | cut -c8- | awk '!seen[$0]++' | paste -sd "," - | sed 's/,/, /g')"
|
|
newcontributors="$(diff --changed-group-format='%<' --unchanged-group-format='' <(git shortlog -sn $LAST_VERSION..HEAD | cut -c8- | awk '!seen[$0]++'| sort) <(git shortlog -sn $LAST_VERSION | cut -c8- | awk '!seen[$0]++'| sort) | paste -sd "," - | sed 's/,/, /g')"
|
|
|
|
echo "Thanks to all of our contributors for this release: $allcontributors"
|
|
echo
|
|
echo "Extra special thanks go to $newcontributors"
|
|
echo
|
|
echo Last, but not least - thank you to everyone who reported issues.
|