cargo-smart-release 0.14.0

Cargo subcommand for fearlessly releasing crates in workspaces.
Documentation
#![deny(rust_2018_idioms)]

pub use context::Context;

#[derive(PartialEq, Eq, Debug, Clone)]
pub struct ChangeLog {
    pub sections: Vec<changelog::Section>,
}

pub mod changelog;
pub mod command;
pub(crate) mod commit;

pub(crate) mod bat;
mod context;
mod crates_index;
pub(crate) mod git;
pub(crate) mod traverse;
mod utils;
pub mod version;