Go to file
sudo pacman -Syu 02f075ce1b chore: bump year license 2022-02-07 21:01:47 +07:00
.github/workflows chore: add goreleaser 2021-11-14 13:27:52 +07:00
cmd/changeloguru refactor: move main to cmd (#18) 2021-05-05 15:18:47 +07:00
internal chore: better naming 2022-02-07 21:00:53 +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.13.2 2021-12-11 10:47:32 +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 chore: explain --from, --to 2022-02-07 20:45:04 +07:00
go.mod build: run go get -u ./... 2022-02-03 23:48:56 +07:00
go.sum build: run go get -u ./... 2022-02-03 23:48:56 +07:00
sonar-project.properties chore: ignore main.go in sonar checking 2021-11-06 14:16:39 +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

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 --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