Go to file
hau 8a36e79dee chore: generate CHANGELOG v0.4.0 2020-11-11 10:35:33 +07:00
.github/workflows chore: add go test, lint in github action 2020-11-09 17:42:52 +07:00
pkg feat(convention): make sure header commit is trimmed space 2020-11-11 10:28:05 +07:00
.gitignore chore: init go mod with gitignore 2020-10-06 16:45:02 +07:00
CHANGELOG.md chore: generate CHANGELOG v0.4.0 2020-11-11 10:35:33 +07:00
Dockerfile build: add Dockerfile 2020-11-11 00:51:13 +07:00
LICENSE.md chore: add MIT LICENSE 2020-11-10 18:07:10 +07:00
README.md docs: add usage guide in README 2020-11-11 10:34:14 +07:00
go.mod build: update go.mod 2020-11-10 23:05:12 +07:00
go.sum build: update go.mod 2020-11-10 23:05:12 +07:00
main.go refactor: move main.go to root dir for easy go get, go install 2020-11-11 00:16:06 +07:00

README.md

Changeloguru

Go

Tool to generate CHANGELOG.md from Conventional Commits.

Install

GO111module=on go get github.com/haunt98/changeloguru

Usage

# Help
changeloguru --help

# Generate changelog v2.0.0 from HEAD to tag v1.0.0 (include commit in tag v1.0.0)
changeloguru --include-to v1.0.0 --version v2.0.0

# Generate changelog v2.0.0 from HEAD to tag v1.0.0 (exclude commit in tag v1.0.0)
changeloguru --exclude-to v1.0.0 --version v2.0.0