Go to file
dependabot[bot] a9e702a25e build(deps): bump github.com/make-go-great/color-go from 0.3.0 to 0.4.1
Bumps [github.com/make-go-great/color-go](https://github.com/make-go-great/color-go) from 0.3.0 to 0.4.1.
- [Release notes](https://github.com/make-go-great/color-go/releases)
- [Changelog](https://github.com/make-go-great/color-go/blob/main/CHANGELOG.md)
- [Commits](https://github.com/make-go-great/color-go/compare/v0.3.0...v0.4.1)

---
updated-dependencies:
- dependency-name: github.com/make-go-great/color-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-07-21 23:24:06 -07:00
.github chore: correct directory for dependabot 2022-07-03 11:25:02 -07:00
cmd/changeloguru refactor: move main to cmd (#18) 2021-05-05 15:18:47 +07:00
internal chore: use make-go-great/date-go 2022-07-03 23:12:26 -07:00
.gitignore chore(changelog): generate v1.13.2 2021-12-11 10:47:32 +07:00
.golangci.yml chore: add golangci config 2022-07-03 08:49:03 -07:00
.goreleaser.yml chore: add goreleaser 2021-11-14 13:27:52 +07:00
CHANGELOG.md chore(changelog): generate v1.16.0 2022-07-03 10:51:48 -07:00
LICENSE chore: bump year license 2022-02-07 21:01:47 +07:00
Makefile chore: add golangci config 2022-07-03 08:49:03 -07:00
README.md chore: remove sonar 2022-07-03 08:49:03 -07:00
go.mod build(deps): bump github.com/make-go-great/color-go from 0.3.0 to 0.4.1 2022-07-21 23:24:06 -07:00
go.sum build(deps): bump github.com/make-go-great/color-go from 0.3.0 to 0.4.1 2022-07-21 23:24:06 -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

Thanks