A Conventional commit cli.
convco
gives tools to work with Conventional Commits.
The tool is still in early development. It provides already the following commands:
convco check
: Checks if a range of commits is following the convention.convco version
: Finds out the current or next version.convco changelog
: Create a changelog file.cargo install convco
Check a range of revisions for compliance.
It returns a non zero exit code if some commits are not conventional. This is useful in a pre-push hook.
sh
convco check $remote_sha..$local_sha
When no options are given it will return the current version.
When --bump
is provided, the next version will be printed out.
Conventional commits are used to calculate the next major, minor or patch.
If needed one can provide --major
, --minor
or --patch
to overrule the convention.
sh
convco version --bump
A changelog can be generated using the conventional commits. It is inspired by conventional changelog. Configuration follows the conventional-changelog-config-spec
sh
convco changelog > CHANGELOG.md
.versionrc
file