chore: Add helper task for generate CHANGELOG

This commit is contained in:
tsuyoshiwada 2018-03-12 00:25:38 +09:00
parent 0a623f3f61
commit 081aa8df60

View file

@ -30,3 +30,9 @@ coverage:
.PHONY: install
install:
go install ./cmd/git-chglog
.PHONY: changelog
changelog:
@git tag $(tag) > /dev/null 2>&1
@git-chglog $(tag)
@git tag -d $(tag) > /dev/null 2>&1