Go to file
sudo pacman -Syu bd3b774189 chore: add NodeJS to gitignore
I use it to format markdown
2021-06-16 18:17:29 +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 test: unit test for filter commits with scope 2021-06-16 18:11:32 +00:00
.gitignore chore: add NodeJS to gitignore 2021-06-16 18:17:29 +00:00
CHANGELOG.md chore(changelog): generate v1.13.0 2021-06-16 18:14:17 +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