Go to file
sudo pacman -Syu fca04f788b
chore: format using gofimports
2022-11-28 01:28:59 +07:00
.github chore: update github action 2022-08-16 14:36:46 +07:00
cmd/changeloguru refactor: move main to cmd (#18) 2021-05-05 15:18:47 +07:00
internal chore: format using gofimports 2022-11-28 01:28:59 +07:00
.gitignore fix: missing flag 2022-09-04 23:30:16 +07:00
.golangci.yml chore: add linters gocritic 2022-11-20 21:20:40 +07:00
.goreleaser.yml chore: use github changelog for goreleaser 2022-08-16 01:21:40 +07:00
CHANGELOG.md chore(changelog): generate v1.18.0 2022-09-22 00:41:59 +07:00
LICENSE chore: update license 2022-08-16 01:26:54 +07:00
Makefile chore: format using gofimports 2022-11-28 01:28:59 +07:00
README.md chore: add interactive mode in how to 2022-10-10 10:11:33 +07:00
go.mod build(deps): bump golang.org/x/mod from 0.6.0 to 0.7.0 2022-11-09 21:34:23 -08:00
go.sum build(deps): bump golang.org/x/mod from 0.6.0 to 0.7.0 2022-11-09 21:34:23 -08:00

README.md

Changeloguru

Go Go Reference codecov

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

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

# Generate changelog in interactive mode (with instruction) and auto push commit, tag
changeloguru generate -i --auto-commit --auto-tag --auto-push

Thanks