Go to file
dependabot[bot] 434211bb04 build(deps): bump goreleaser/goreleaser-action from 3 to 4
Bumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 3 to 4.
- [Release notes](https://github.com/goreleaser/goreleaser-action/releases)
- [Commits](https://github.com/goreleaser/goreleaser-action/compare/v3...v4)

---
updated-dependencies:
- dependency-name: goreleaser/goreleaser-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-03-22 16:22:26 +07:00
.github build(deps): bump goreleaser/goreleaser-action from 3 to 4 2023-03-22 16:22:26 +07:00
cmd/changeloguru refactor: move main to cmd (#18) 2021-05-05 15:18:47 +07:00
internal chore: format using gofimports 2022-11-28 01:28:59 +07:00
.gitignore fix: missing flag 2022-09-04 23:30:16 +07:00
.golangci.yml chore: remove noctx lint 2023-02-25 23:30:00 +07:00
.goreleaser.yml chore: use github changelog for goreleaser 2022-08-16 01:21:40 +07:00
CHANGELOG.md chore(changelog): generate v1.18.1 2022-12-19 22:32:33 +07:00
LICENSE chore: update license 2022-08-16 01:26:54 +07:00
Makefile chore: update make 2023-02-26 00:05:36 +07:00
README.md chore: resize GoLand logo 2022-12-08 00:31:25 +07:00
go.mod build(deps): bump github.com/go-git/go-git/v5 from 5.6.0 to 5.6.1 2023-03-17 13:42:12 +07:00
go.sum build(deps): bump github.com/go-git/go-git/v5 from 5.6.0 to 5.6.1 2023-03-17 13:42:12 +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

# Generate changelog in interactive mode (with instruction) and auto push commit, tag
changeloguru generate -i --auto-commit --auto-tag --auto-push

Thanks

GoLand logo.

Made with GoLand. Thanks for supporting open source projects!