Go to file
dependabot[bot] c827c4d72c build(deps): bump github.com/urfave/cli/v2 from 2.11.2 to 2.14.0
Bumps [github.com/urfave/cli/v2](https://github.com/urfave/cli) from 2.11.2 to 2.14.0.
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](https://github.com/urfave/cli/commits)

---
updated-dependencies:
- dependency-name: github.com/urfave/cli/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-09-02 01:03:23 -07:00
.github chore: update github action 2022-08-16 14:36:46 +07:00
cmd/changeloguru refactor: move main to cmd (#18) 2021-05-05 15:18:47 +07:00
internal chore: capitalized log 2022-08-16 01:03:57 +07:00
.gitignore chore: use my own go-test-color 2022-08-15 10:54:11 -07:00
.golangci.yml chore: add golangci config 2022-07-03 08:49:03 -07:00
.goreleaser.yml chore: use github changelog for goreleaser 2022-08-16 01:21:40 +07:00
CHANGELOG.md chore(changelog): generate v1.17.0 2022-08-16 01:25:34 +07:00
LICENSE chore: update license 2022-08-16 01:26:54 +07:00
Makefile chore: use my own go-test-color 2022-08-15 10:54:11 -07:00
README.md chore: remove sonar 2022-07-03 08:49:03 -07:00
go.mod build(deps): bump github.com/urfave/cli/v2 from 2.11.2 to 2.14.0 2022-09-02 01:03:23 -07:00
go.sum build(deps): bump github.com/urfave/cli/v2 from 2.11.2 to 2.14.0 2022-09-02 01:03:23 -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