Go to file
sudo pacman -Syu 78ce559398 fix: panic if empty tags in auto mode 2023-07-23 16:22:59 +07:00
.github chore: github action stable 2023-03-29 00:45:35 +07:00
cmd/changeloguru refactor: move main to cmd (#18) 2021-05-05 15:18:47 +07:00
internal fix: panic if empty tags in auto mode 2023-07-23 16:22:59 +07:00
.gitignore chore: generic gitignore 2023-06-29 18:06:06 +07:00
.golangci.yml chore: improve golangci-lint 2023-06-29 00:34:30 +07:00
.goreleaser.yml chore: use github changelog for goreleaser 2022-08-16 01:21:40 +07:00
CHANGELOG.md chore(changelog): generate v1.20.0 2023-07-16 21:09:16 +07:00
LICENSE chore: bump year 2023-06-29 17:54:42 +07:00
Makefile chore: update make 2023-02-26 00:05:36 +07:00
README.md chore: only use link, remove image 2023-06-29 17:55:56 +07:00
go.mod build(deps): bump github.com/make-go-great/color-go from 0.4.1 to 0.5.0 2023-07-17 13:08:27 +07:00
go.sum build(deps): bump github.com/make-go-great/color-go from 0.4.1 to 0.5.0 2023-07-17 13:08:27 +07: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

Made with GoLand. Thanks for supporting open source projects!