From 65b6fe3150c315c78ceabfe2cc1750451861ff5b Mon Sep 17 00:00:00 2001 From: Takayuki Maeda <41065217+TaKO8Ki@users.noreply.github.com> Date: Sat, 31 Jul 2021 00:07:25 +0900 Subject: [PATCH] v0.1.1 (#91) --- 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 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")