Go to file
hau d06a27d88d refactor(cli): rename output path to real output 2021-01-05 15:55:08 +07:00
.github/workflows chore: bump golangci-lint v1.34 in github action 2020-12-31 15:06:08 +07:00
pkg feat: only use --to to replace --exclude-to, --include-to 2021-01-05 14:16:00 +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 build: update go.mod 2021-01-04 17:57:53 +07:00
go.sum build: update go.mod 2021-01-04 17:57:53 +07:00
main.go refactor(cli): rename output path to real output 2021-01-05 15:55:08 +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