diff --git a/Cargo.lock b/Cargo.lock index 14bcb9e..f87ac12 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -845,7 +845,7 @@ dependencies = [ [[package]] name = "imgurs" -version = "0.7.2" +version = "0.7.3" dependencies = [ "anyhow", "arboard", diff --git a/Cargo.toml b/Cargo.toml index c5bb28b..521c55c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "imgurs" +version = "0.7.3" description = "API and CLI for Imgur" license = "BSD-3-Clause" readme = "README.md" @@ -9,7 +10,6 @@ repository = "https://github.com/MedzikUser/imgurs.git" keywords = ["imgur", "imgur-api", "image", "image-upload"] categories = ["command-line-utilities"] rust-version = "1.58" -version = "0.7.2" edition = "2021" [profile.release] diff --git a/src/cli/webhook.rs b/src/cli/webhook.rs index af2b651..8208b79 100644 --- a/src/cli/webhook.rs +++ b/src/cli/webhook.rs @@ -22,9 +22,9 @@ pub async fn send_discord_webhook( .send(|message| { message.username("Imgurs").embed(|embed| { embed - .title(&link) + .title(link) .description(&format!("Delete Hash ||{deletehash}||")) - .image(&link) + .image(link) .footer(&format!("Imgurs v{version}"), None) }) }) diff --git a/src/lib.rs b/src/lib.rs index 31d5a02..45ebf6d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ //! your application, simply add it to your project's `Cargo.toml`. //! ```toml //! [dependencies] -//! imgurs = "0.7.1" +//! imgurs = "0.7.3" //! ``` //! //! # Example Usage