From ffc76de236aae595f389de1c89c87ce996cd52c3 Mon Sep 17 00:00:00 2001 From: Takayuki Maeda Date: Mon, 29 Nov 2021 00:58:43 +0900 Subject: [PATCH] v0.1.2 (#112) --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/cli.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 138e751..ac851b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -350,7 +350,7 @@ dependencies = [ [[package]] name = "frum" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 0f2a3dd..6fb10c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frum" -version = "0.1.1" +version = "0.1.2" authors = ["Takayuki Maeda "] edition = "2018" license = "MIT" diff --git a/src/cli.rs b/src/cli.rs index 68f2236..f6b7d60 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.1") + .version("0.1.2") .about("A little bit fast and modern Ruby version manager written in Rust") .arg( Arg::with_name("log-level")