Go to file
hau 0f47650484 feat: add --repository and --output-dir 2020-12-18 16:04:21 +07:00
.github/workflows chore: bump golangci-lint v1.33.0 in github action 2020-11-23 18:06:25 +07:00
pkg test(changelog): more test for generate changelog 2020-12-17 18:02:12 +07:00
.gitignore chore: init go mod with gitignore 2020-10-06 16:45:02 +07:00
CHANGELOG.md chore: generate CHANGELOG v0.8.0 2020-12-17 18:07:14 +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 feat: add --repository and --output-dir 2020-12-18 16:04: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