Go to file
hau 279ddecae0 chore(changelog): generate v0.10.0 2020-12-24 17:56:05 +07:00
.github/workflows chore: bump golangci-lint v1.33.0 in github action 2020-11-23 18:06:25 +07:00
pkg chore(git): better error return 2020-12-23 18:05:36 +07:00
.gitignore chore: init go mod with gitignore 2020-10-06 16:45:02 +07:00
CHANGELOG.md chore(changelog): generate v0.10.0 2020-12-24 17:56:05 +07:00
Dockerfile build: add Dockerfile 2020-11-11 00:51:13 +07:00
LICENSE chore: remove markdown ext from LICENSE 2020-12-18 16:48:26 +07:00
README.md chore(readme): add fatih/color in thanks 2020-12-24 17:53:09 +07:00
go.mod feat: highlight error 2020-12-24 17:52:21 +07:00
go.sum feat: highlight error 2020-12-24 17:52:21 +07:00
main.go feat: highlight error 2020-12-24 17:52:21 +07:00

README.md

Changeloguru

Go PkgGoDev

Tool to generate CHANGELOG.md from Conventional Commits.

Install

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

Usage

# Help
changeloguru --help

# Generate changelog v1.0.0
changeloguru --version v1.0.0

# 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

Thanks