docs: add go-conventionalcommits to the tools list

The https://github.com/leodido/go-conventionalcommits contains a very fast (see [benchmarks](https://github.com/leodido/go-conventionalcommits#performances)) Go library to parse Conventional Commits.
It uses finite-state machines to implement the parsing.

Signed-off-by: Leonardo Di Donato <leodidonato@gmail.com>
This commit is contained in:
Leo Di Donato 2021-06-09 14:39:26 +02:00 committed by GitHub
parent a5d493d9a7
commit b2c1712df3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -200,6 +200,7 @@ The first draft of this specification has been written in collaboration with som
## Tooling for Conventional Commits
* [go-conventionalcommits](https://github.com/leodido/go-conventionalcommits): Full Go powers to parse conventional commits
* [go-conventional-commit](https://gitlab.com/digitalxero/go-conventional-commit): go library for parsing commit messages following the specification.
* [chglog](https://github.com/goreleaser/chglog): a tool for parsing Conventional Commits messages from git histories and turning them into templateable change logs.
* [fastlane-plugin](https://github.com/xotahal/fastlane-plugin-semantic_release): follows the specification to manage versions and generate a changelog automatically.

View File

@ -202,6 +202,7 @@ The first draft of this specification has been written in collaboration with som
## Tooling for Conventional Commits
* [go-conventionalcommits](https://github.com/leodido/go-conventionalcommits): Full Go powers to parse conventional commits
* [go-conventional-commit](https://gitlab.com/digitalxero/go-conventional-commit14): go library for parsing commit messages following the specification.
* [chglog](https://github.com/goreleaser/chglog): a tool for parsing Conventional Commits messages from git histories and turning them into templateable change logs.
* [fastlane-plugin](https://github.com/xotahal/fastlane-plugin-semantic_release): follows the specification to manage versions and generate a changelog automatically