Go to file
sudo pacman -Syu bc4b6e45e1 chore(readme): add rst filetype 2021-06-16 18:00:00 +00:00
.github/workflows refactor: move main to cmd (#18) 2021-05-05 15:18:47 +07:00
cmd/changeloguru refactor: move main to cmd (#18) 2021-05-05 15:18:47 +07:00
internal refactor: split filter outside generate markdown and rst 2021-06-16 17:56:10 +00:00
.gitignore refactor: use better commands and flags name (#7) 2021-04-11 16:11:41 +07:00
CHANGELOG.md chore(changelog): generate v1.12.0 2021-05-11 05:06:30 +00:00
LICENSE chore(license): bump 2021 2021-01-21 15:54:46 +07:00
README.md chore(readme): add rst filetype 2021-06-16 18:00:00 +00:00
go.mod build: update go.mod 2021-06-16 11:42:58 +07:00
go.sum build: update go.mod 2021-06-16 11:42:58 +07:00

README.md

Changeloguru

Go Go Reference

Tool to generate CHANGELOG.md, CHANGELOG.rst from Conventional Commits.

Install

With Go version >= 1.16:

go install github.com/haunt98/changeloguru/cmd/changeloguru@latest

With Go version < 1.16:

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

Usage

# Help
changeloguru --help

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

# Generate changelog v2.0.0 from HEAD to tag v1.0.0
changeloguru generate --to v1.0.0 --version v2.0.0

# Generate changelog in dry run mode (without changing anything)
changeloguru generate --to v1.0.0 --version v2.0.0 --dry-run

# Generate changelog only for scope
changeloguru generate --to v1.0.0 --version v2.0.0 --scope projectA --scope projectB

Thanks