convco 0.7.0

Conventional commit tools
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod conventional;
mod error;
mod git;
pub mod strip;

pub use conventional::{
    changelog,
    commit::{Footer, FooterKey},
    config::{commit_scope_eq, commit_type_eq, Increment, Type},
    CommitParser, Config, ParseError,
};
pub use error::ConvcoError;
pub use git::{
    open_repo, Commit, CommitTrait, MaxMajorsIterExt, MaxMinorsIterExt, MaxPatchesIterExt, Repo,
    RevWalkOptions,
};