diff --git a/Cargo.lock b/Cargo.lock index 66cfbd6..bb8069d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -344,7 +344,7 @@ dependencies = [ [[package]] name = "frum" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 052c470..5d42a97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frum" -version = "0.1.0" +version = "0.1.1" authors = ["Takayuki Maeda "] edition = "2018" license = "MIT" diff --git a/src/cli.rs b/src/cli.rs index e420506..68f2236 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -3,7 +3,7 @@ use clap::{App, AppSettings, Arg, SubCommand}; pub fn build_cli() -> App<'static, 'static> { App::new("frum") .setting(AppSettings::ArgRequiredElseHelp) - .version("0.1.0") + .version("0.1.1") .about("A little bit fast and modern Ruby version manager written in Rust") .arg( Arg::with_name("log-level")