mkcmt 0.2.2

mkcmt is make commit. Conventional Commit Generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # mkcmt.lib
//!
//! This library provides functionality to parse conventional commit messages and
//! exposes changelog metadata. The expected commit message format is:
//!
//! ```text
//! <type>(<optional scope>): <description>
//!
//! <optional body>
//!
//! <optional footer>
//! ```
//!
//! Use the modules provided to parse commit messages or retrieve changelog data.

pub mod changelog;
pub mod commit;