Go to file
sudo pacman -Syu faa292cd38
build: bump github.com/urfave/cli/v2 v2.6.0
2022-05-06 08:40:41 +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: make interactive default true 2022-04-23 23:05:22 +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.14.0 2022-02-07 23:14:06 +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: make interactive default true 2022-04-23 23:05:22 +07:00
go.mod build: bump github.com/urfave/cli/v2 v2.6.0 2022-05-06 08:40:41 +07:00
go.sum build: bump github.com/urfave/cli/v2 v2.6.0 2022-05-06 08:40:41 +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

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