conventional_commit_parser 0.9.4

A rust implementation of the conventional commit specification.
Documentation
pre_bump_hooks = [
    "cargo test",
    "cargo clippy",
    "cargo build --release",
    "cargo fmt --all",
    "cargo bump {{version}}",
]

post_bump_hooks = [
    "git push",
    "git push origin {{version}}",
    "cargo package",
    "cargo publish"
]

[changelog]
path = "CHANGELOG.md"
template = "remote"
remote = "github.com"
owner = "oknozor"
repository = "conventional_commits_parser_rs"
authors = [
    { signature = "Paul Delafosse", username = "oknozor" },
]