From 2d211d7f2de98bb2586ffeb648c6fe64bc31a630 Mon Sep 17 00:00:00 2001 From: MarkSackerberg <93528482+MarkSackerberg@users.noreply.github.com> Date: Mon, 4 Mar 2024 22:10:01 +0100 Subject: [PATCH 1/2] fix clippy --- src/show/process.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/show/process.rs b/src/show/process.rs index 81538df4..7b6c3a47 100644 --- a/src/show/process.rs +++ b/src/show/process.rs @@ -161,11 +161,11 @@ pub fn process_show(args: ShowArgs) -> Result<()> { } else { style(config_line_settings.prefix_name.as_str()) }; - print_with_style(" ", "prefix_name", &prefix_name.to_string()); + print_with_style(" ", "prefix_name", prefix_name.to_string()); print_with_style( " ", "name_length", - &config_line_settings.name_length.to_string(), + config_line_settings.name_length.to_string(), ); let prefix_uri = if config_line_settings.prefix_uri.is_empty() { @@ -173,11 +173,11 @@ pub fn process_show(args: ShowArgs) -> Result<()> { } else { style(config_line_settings.prefix_uri.as_str()) }; - print_with_style(" ", "prefix_uri", &prefix_uri.to_string()); + print_with_style(" ", "prefix_uri", prefix_uri.to_string()); print_with_style( " ", "uri_length", - &config_line_settings.uri_length.to_string(), + config_line_settings.uri_length.to_string(), ); print_with_style( " ", From cdda392894246a77589ea022e140b319442f1bfb Mon Sep 17 00:00:00 2001 From: MarkSackerberg <93528482+MarkSackerberg@users.noreply.github.com> Date: Mon, 4 Mar 2024 22:28:38 +0100 Subject: [PATCH 2/2] release 2.6.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2b7c1735..3fa1dd05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4725,7 +4725,7 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" [[package]] name = "sugar-cli" -version = "2.6.0" +version = "2.6.1" dependencies = [ "anchor-client", "anchor-lang", diff --git a/Cargo.toml b/Cargo.toml index 820ed7ed..f53a1500 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sugar-cli" -version = "2.6.0" +version = "2.6.1" edition = "2021" description = "Command line tool for creating and managing Metaplex Candy Machines." license = "Apache-2.0"