Go to file
dependabot[bot] 85bbfbda09
build(deps): bump github.com/urfave/cli/v2 from 2.26.0 to 2.27.0 (#104)
Bumps [github.com/urfave/cli/v2](https://github.com/urfave/cli) from 2.26.0 to 2.27.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/compare/v2.26.0...v2.27.0)

---
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>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-27 12:56:08 +07:00
.github build(deps): bump github/codeql-action from 2 to 3 2023-12-14 16:05:11 +07:00
cmd/changeloguru refactor: move main to cmd (#18) 2021-05-05 15:18:47 +07:00
internal feat(convention): allow type, scope has digit 2023-12-25 16:18:24 +07:00
.gitignore chore: generic gitignore 2023-06-29 18:06:06 +07:00
.golangci.yml chore: improve golangci-lint 2023-06-29 00:34:30 +07:00
.goreleaser.yml chore: use github changelog for goreleaser 2022-08-16 01:21:40 +07:00
CHANGELOG.md chore(changelog): generate v1.21.0 2023-12-25 16:19:02 +07:00
LICENSE chore: bump year 2023-06-29 17:54:42 +07:00
Makefile chore: add go fix 2023-12-21 03:01:54 +07:00
README.md chore add badges 2023-09-23 14:06:57 +07:00
go.mod build(deps): bump github.com/urfave/cli/v2 from 2.26.0 to 2.27.0 (#104) 2023-12-27 12:56:08 +07:00
go.sum build(deps): bump github.com/urfave/cli/v2 from 2.26.0 to 2.27.0 (#104) 2023-12-27 12:56:08 +07:00

README.md

Changeloguru

Go Go Reference codecov Latest Version

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 aka new.

--to is commit in the past aka old.

Go from future to 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

Made with GoLand. Thanks for supporting open source projects!