Go to file
hau 991d127bbd chore: generate CHANGELOG v0.7.0 2020-12-02 15:50:52 +07:00
.github/workflows chore: bump golangci-lint v1.33.0 in github action 2020-11-23 18:06:25 +07:00
pkg test(convetion): unit test for mixedcase types 2020-12-02 15:48:22 +07:00
.gitignore chore: init go mod with gitignore 2020-10-06 16:45:02 +07:00
CHANGELOG.md chore: generate CHANGELOG v0.7.0 2020-12-02 15:50:52 +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 chore: remove new line between badges 2020-11-29 20:23:27 +07:00
go.mod build: update go.mod 2020-11-29 20:21:13 +07:00
go.sum build: update go.mod 2020-11-29 20:21:13 +07:00
main.go refactor: split get flags, get args from cli 2020-12-01 17:21:55 +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