Go to file
sudo pacman -Syu 0ebfefda25 chore(sonar): missing sonar.organization 2021-11-06 14:12:40 +07:00
.github/workflows chore: adding sonar properties 2021-11-06 14:05:55 +07:00
cmd/changeloguru refactor: move main to cmd (#18) 2021-05-05 15:18:47 +07:00
internal Reduce complex logWithStopFn (#22) 2021-08-21 02:01:19 +07: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 sonar badge 2021-08-21 02:02:20 +07:00
go.mod chore: bump go.mod 2021-11-06 13:21:52 +07:00
go.sum chore: bump go.mod 2021-11-06 13:21:52 +07:00
sonar-project.properties chore(sonar): missing sonar.organization 2021-11-06 14:12:40 +07:00

README.md

Changeloguru

Go Go Reference codecov Quality Gate Status

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