Skip to content

Commit

Permalink
Release 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
n-hass committed Feb 7, 2024
1 parent b8ef75f commit 92cc926
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
},
Expand Down

0 comments on commit 92cc926

Please sign in to comment.