bumpversion-cli 0.0.6

Update all version strings in your project and optionally commit and tag the changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![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
}