From a1e7f5edd3dea43eb657a362f1d5503e1c7eff7b Mon Sep 17 00:00:00 2001 From: Takayuki Date: Wed, 28 Apr 2021 23:12:31 +0900 Subject: [PATCH] v0.1.0-beta.0 release --- Cargo.lock | 4 +++- Cargo.toml | 2 +- README.md | 4 ++-- src/cli.rs | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b569697..e993efe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "adler" version = "1.0.2" @@ -342,7 +344,7 @@ dependencies = [ [[package]] name = "frum" -version = "0.1.0-alpha.1" +version = "0.1.0-beta.0" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index c22a8c0..92c76d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "frum" -version = "0.1.0-alpha.1" +version = "0.1.0-beta.0" authors = ["Takayuki Maeda "] edition = "2018" license = "MIT" diff --git a/README.md b/README.md index 1be62be..a943b9f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ ![frum](./resources/logo.png) -**frum is currently in alpha** +**frum is currently in beta** 🏃‍♂️ A little bit fast and modern Ruby version manager written in Rust @@ -92,7 +92,7 @@ $ brew install tako8ki/tap/frum If you already have a Rust environment set up, you can use the `cargo install` command: ``` -$ cargo install --version 0.1.0-alpha.1 frum +$ cargo install --version 0.1.0-beta.0 frum ``` ## Contribution diff --git a/src/cli.rs b/src/cli.rs index 19d9f48..b649a5d 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-alpha.1") + .version("0.1.0-beta.0") .about("A little bit fast and modern Ruby version manager written in Rust") .arg( Arg::with_name("log-level")