2020-11-07 16:52:09 +00:00
|
|
|
# Changeloguru
|
2020-11-10 17:25:56 +00:00
|
|
|
|
2021-01-05 08:59:46 +00:00
|
|
|
[![Go](https://github.com/haunt98/changeloguru/workflows/Go/badge.svg?branch=main)](https://github.com/actions/setup-go)
|
2021-03-29 07:24:18 +00:00
|
|
|
[![Go Reference](https://pkg.go.dev/badge/github.com/haunt98/changeloguru.svg)](https://pkg.go.dev/github.com/haunt98/changeloguru)
|
2020-11-10 17:25:56 +00:00
|
|
|
|
|
|
|
Tool to generate `CHANGELOG.md` from [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/).
|
|
|
|
|
2020-11-11 03:34:14 +00:00
|
|
|
## Install
|
2020-11-10 17:25:56 +00:00
|
|
|
|
2021-03-15 17:00:47 +00:00
|
|
|
With Go version `>= 1.16`:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
go install github.com/haunt98/changeloguru@latest
|
|
|
|
```
|
|
|
|
|
|
|
|
With Go version `< 1.16`:
|
|
|
|
|
2020-11-10 17:25:56 +00:00
|
|
|
```sh
|
|
|
|
GO111module=on go get github.com/haunt98/changeloguru
|
|
|
|
```
|
2020-11-11 03:34:14 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```sh
|
|
|
|
# Help
|
|
|
|
changeloguru --help
|
|
|
|
|
2020-11-11 16:05:39 +00:00
|
|
|
# Generate changelog v1.0.0
|
|
|
|
changeloguru --version v1.0.0
|
|
|
|
|
2021-01-05 09:00:48 +00:00
|
|
|
# Generate changelog v2.0.0 from HEAD to tag v1.0.0
|
|
|
|
changeloguru --to v1.0.0 --version v2.0.0
|
2020-11-11 03:34:14 +00:00
|
|
|
```
|
2020-12-18 09:58:31 +00:00
|
|
|
|
|
|
|
## Thanks
|
|
|
|
|
2021-01-05 08:59:46 +00:00
|
|
|
- [Command Line Interface Guidelines](https://clig.dev/)
|
2020-12-24 10:53:09 +00:00
|
|
|
- [fatih/color](https://github.com/fatih/color)
|
2020-12-18 09:58:31 +00:00
|
|
|
- [go-git/go-git](https://github.com/go-git/go-git)
|
|
|
|
- [google/go-cmp](https://github.com/google/go-cmp)
|
|
|
|
- [sebdah/goldie](https://github.com/sebdah/goldie)
|
|
|
|
- [stretchr/testify](https://github.com/stretchr/testify)
|
|
|
|
- [urfave/cli](https://github.com/urfave/cli)
|