Go to file
sudo pacman -Syu 17e4871ad2 build: bump go.mod 2024-09-05 15:50:34 +07:00
.github chore: remove goreleaser 2024-06-10 02:08:33 +07:00
cmd/changeloguru refactor: move main to cmd (#18) 2021-05-05 15:18:47 +07:00
internal chore: gosec 2024-09-04 22:32:30 +07:00
.gitignore chore: generic gitignore 2023-06-29 18:06:06 +07:00
.golangci.yml chore: gosec 2024-09-04 22:32:30 +07:00
CHANGELOG.md chore(changelog): generate v1.21.3 2024-08-12 00:35:50 +07:00
LICENSE chore: bump year 2023-06-29 17:54:42 +07:00
README.md chore: add badges 2024-06-08 15:51:55 +07:00
go.mod build: bump go.mod 2024-09-05 15:50:34 +07:00
go.sum build(deps): bump golang.org/x/mod from 0.20.0 to 0.21.0 (#126) 2024-09-05 15:49:39 +07:00
justfile chore: migrate to justfile 2024-08-22 13:21:25 +07:00

README.md

Changeloguru

Go gitleaks Go Reference Latest Version

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 aka new.

--to is commit in the past aka old.

Go from future to 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!