From 92cc926340e4aa413aef5349c2ebcce36ba85d47 Mon Sep 17 00:00:00 2001 From: Nicholas Date: Wed, 7 Feb 2024 16:21:49 +1030 Subject: [PATCH] Release 0.1.2 --- Cargo.lock | 2 +- Cargo.toml | 6 +++--- src/main.rs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8e54f73..719b67e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -284,7 +284,7 @@ dependencies = [ [[package]] name = "raph" -version = "0.1.1" +version = "0.1.2" dependencies = [ "clap", "crossterm", diff --git a/Cargo.toml b/Cargo.toml index 4fb14e3..18bc504 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "raph" -version = "0.1.1" -description = "AWS profile manager and executor" +version = "0.1.2" +description = "AWS Profile Handler and executor" homepage = "https://github.com/n-hass/raph" repository = "https://github.com/n-hass/raph" documentation = "https://github.com/n-hass/raph/blob/main/README.md" readme = "README.md" -license = "MIT" +license = "mit" edition = "2021" exclude = [ ".github", diff --git a/src/main.rs b/src/main.rs index bc15d2e..acecb18 100644 --- a/src/main.rs +++ b/src/main.rs @@ -55,7 +55,7 @@ fn main() { }, false => { match write_to_config(&home_dir, profile) { - Ok(_) => println!("🦀 Profile switched to {}", profile), + Ok(_) => println!("🦀 Profile switched to {}", profile.clone().green().bold()), Err(err) => eprintln!("🦀 Error: {}", err), } exit(1); // Exit with code 1 for profile switch @@ -96,7 +96,7 @@ fn main() { .queue(cursor::MoveUp(2)).unwrap() .queue(terminal::Clear(ClearType::CurrentLine)).unwrap(); - println!("🦀 AWS profile: {}", profile.green().bold()); + println!("🦀 AWS profile: {}", profile.clone().green().bold()); exit(1); // Exit with code 1 for profile switch },