Go to file
sudo pacman -Syu b98c62c46f
feat: support filter commit scope (#5)
* feat: add scope flag

* refactor: use scopes as map to quickly check

* feat: add scope to generate commits

* feat(convention): add scope to commit

* refactor: remove obsolete commit GetType

* refactor(convention): combie UpdateType and NewCommit

* feat(changelog): skip commit outside scopes

* feat(convention): remove () in scope

* feat(changelog): support filter scope

Co-authored-by: Tran Hau <ngtranhau@gmail.com>
2021-03-22 12:44:54 +07:00
.github/workflows chore: bump go 1.16.2 in github action 2021-03-18 10:22:51 +00:00
pkg feat: support filter commit scope (#5) 2021-03-22 12:44:54 +07:00
.gitignore chore: update gitignore 2021-01-12 01:19:02 +07:00
CHANGELOG.md chore(changelog): generate v1.4.0 2021-03-17 05:14:50 +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 chore(readme): add guide for install with go 1.16 2021-03-15 17:00:47 +00:00
go.mod build: update go.mod 2021-03-18 10:27:33 +00:00
go.sum build: update go.mod 2021-03-18 10:27:33 +00:00
main.go feat: support filter commit scope (#5) 2021-03-22 12:44:54 +07:00

README.md

Changeloguru

Go PkgGoDev Total alerts

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 --version v1.0.0

# Generate changelog v2.0.0 from HEAD to tag v1.0.0
changeloguru --to v1.0.0 --version v2.0.0

Thanks