;just: rename relauthors
This commit is contained in:
parent
9685897f78
commit
381b1ee662
10
Justfile
10
Justfile
@ -1035,6 +1035,11 @@ relprep VER:
|
|||||||
@reldate:
|
@reldate:
|
||||||
awk '/^#+ +[0-9]+\.[0-9].*([0-9]{4}-[0-9]{2}-[0-9]{2})/{print $3;exit}' hledger/CHANGES.md
|
awk '/^#+ +[0-9]+\.[0-9].*([0-9]{4}-[0-9]{2}-[0-9]{2})/{print $3;exit}' hledger/CHANGES.md
|
||||||
|
|
||||||
|
# show commit author names since last release
|
||||||
|
@relauthors:
|
||||||
|
echo "Commit authors since last release:"
|
||||||
|
git shortlog -sn `git tag --sort=-creatordate -l '[0-9]*' | head -1`..
|
||||||
|
|
||||||
# Show last release date and version (of hledger package).
|
# Show last release date and version (of hledger package).
|
||||||
@rel:
|
@rel:
|
||||||
just rels | head -1
|
just rels | head -1
|
||||||
@ -1179,11 +1184,6 @@ _gitSwitchAutoCreate BRANCH:
|
|||||||
@describe:
|
@describe:
|
||||||
git describe --tags --match 'hledger-[0-9]*' --dirty
|
git describe --tags --match 'hledger-[0-9]*' --dirty
|
||||||
|
|
||||||
# show commit author names since last release
|
|
||||||
@authors-release:
|
|
||||||
echo "Commit authors since last release:"
|
|
||||||
git shortlog -sn `git tag --sort=-creatordate -l '[0-9]*' | head -1`..
|
|
||||||
|
|
||||||
# show all commit author names
|
# show all commit author names
|
||||||
@authors:
|
@authors:
|
||||||
echo "Commit authors ($(git shortlog -sn | wc -l | awk '{print $1}'))":
|
echo "Commit authors ($(git shortlog -sn | wc -l | awk '{print $1}'))":
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user