bumpversion-cli 0.0.9

Update all version strings in your project and optionally commit and tag the changes
//! `bumpversion` CLI binary entrypoint.

#![forbid(unsafe_code)]

mod common;
mod logging;
mod options;
mod verbose;

use clap::Parser;
use color_eyre::eyre;

#[tokio::main]
async fn main() -> eyre::Result<()> {
    color_eyre::install()?;

    let mut options = options::Options::parse();
    options::fix(&mut options);
    common::bumpversion(options).await
}