Go to file
sudo pacman -Syu 1b64a4348f
chore(changelog): generate v1.15.0
2022-05-31 18:10:54 +07:00
.github/workflows build: bump go 1.18 2022-03-16 11:36:14 +07:00
cmd/changeloguru refactor: move main to cmd (#18) 2021-05-05 15:18:47 +07:00
internal feat: add command version 2022-05-31 18:09:47 +07:00
.gitignore chore(changelog): generate v1.13.2 2021-12-11 10:47:32 +07:00
.goreleaser.yml chore: add goreleaser 2021-11-14 13:27:52 +07:00
CHANGELOG.md chore(changelog): generate v1.15.0 2022-05-31 18:10:54 +07:00
LICENSE chore: bump year license 2022-02-07 21:01:47 +07:00
Makefile test: update git repository unit test 2021-11-06 14:37:03 +07:00
README.md feat: add command version 2022-05-31 18:09:47 +07:00
go.mod feat: add command version 2022-05-31 18:09:47 +07:00
go.sum feat: add command version 2022-05-31 18:09:47 +07:00
sonar-project.properties chore: sonar ignore cli internal 2022-02-07 21:08:06 +07:00

README.md

Changeloguru

Go Go Reference codecov Quality Gate Status

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

Roadmap

  • Support CHANGELOG.txt
  • Interactive mode
  • Unit test
  • Auto generate commit after gen CHANGELOG
  • Add version command

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

--from is commit in the future.

-to is commit in the past.

# 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 --version v2.0.0 --to v1.0.0

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

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

Thanks