Go to file
sudo pacman -Syu 32a1b40013
refactor: use better commands and flags name (#7)
* build: update go.mod

* refactor: replace debug with verbose

* refactor: split action from main

* refactor: move all cli app inside pkg cli

* chore(readme): use generate command

Co-authored-by: Tran Hau <ngtranhau@gmail.com>
2021-04-11 16:11:41 +07:00
.github/workflows chore: better build with many OS 2021-03-29 07:26:44 +00:00
pkg refactor: use better commands and flags name (#7) 2021-04-11 16:11:41 +07:00
.gitignore refactor: use better commands and flags name (#7) 2021-04-11 16:11:41 +07:00
CHANGELOG.md chore(changelog): generate v1.6.0 2021-03-29 13:58:28 +00:00
Dockerfile chore: bump go 1.16 in Dockerfile 2021-03-17 05:12:22 +00:00
LICENSE chore(license): bump 2021 2021-01-21 15:54:46 +07:00
README.md refactor: use better commands and flags name (#7) 2021-04-11 16:11:41 +07:00
go.mod refactor: use better commands and flags name (#7) 2021-04-11 16:11:41 +07:00
go.sum refactor: use better commands and flags name (#7) 2021-04-11 16:11:41 +07:00
main.go refactor: use better commands and flags name (#7) 2021-04-11 16:11:41 +07:00

README.md

Changeloguru

Go Go Reference

Tool to generate CHANGELOG.md from Conventional Commits.

Install

With Go version >= 1.16:

go install github.com/haunt98/changeloguru@latest

With Go version < 1.16:

GO111module=on go get github.com/haunt98/changeloguru

Usage

# 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

Thanks