gitcc-core 0.5.0

Core crate for gitcc-cli
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Core functionalities

mod changelog;
mod commit;
mod config;
mod error;
mod release;

pub use changelog::*;
pub use commit::*;
pub use config::*;
pub use error::*;
pub use release::*;

pub use gitcc_changelog::TEMPLATE_CHANGELOG_STD;
pub use gitcc_convco::{ConvcoMessage, StringExt};
pub use time;