cclog 0.12.0

A conventional changelog for the rest of us
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]

#[macro_use]
mod macros;
mod clog;
mod config;
pub mod error;
pub mod fmt;
pub mod git;
mod link_style;
mod sectionmap;

pub use crate::{clog::Clog, link_style::LinkStyle, sectionmap::SectionMap};

// The default config file
const DEFAULT_CONFIG_FILE: &str = ".clog.toml";