chore(release): v0.7.3

This commit is contained in:
MedzikUser 2022-05-18 20:58:00 +02:00
parent f4e0044678
commit fb72dc1112
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
4 changed files with 5 additions and 5 deletions

2
Cargo.lock generated
View File

@ -845,7 +845,7 @@ dependencies = [
[[package]] [[package]]
name = "imgurs" name = "imgurs"
version = "0.7.2" version = "0.7.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"arboard", "arboard",

View File

@ -1,5 +1,6 @@
[package] [package]
name = "imgurs" name = "imgurs"
version = "0.7.3"
description = "API and CLI for Imgur" description = "API and CLI for Imgur"
license = "BSD-3-Clause" license = "BSD-3-Clause"
readme = "README.md" readme = "README.md"
@ -9,7 +10,6 @@ repository = "https://github.com/MedzikUser/imgurs.git"
keywords = ["imgur", "imgur-api", "image", "image-upload"] keywords = ["imgur", "imgur-api", "image", "image-upload"]
categories = ["command-line-utilities"] categories = ["command-line-utilities"]
rust-version = "1.58" rust-version = "1.58"
version = "0.7.2"
edition = "2021" edition = "2021"
[profile.release] [profile.release]

View File

@ -22,9 +22,9 @@ pub async fn send_discord_webhook(
.send(|message| { .send(|message| {
message.username("Imgurs").embed(|embed| { message.username("Imgurs").embed(|embed| {
embed embed
.title(&link) .title(link)
.description(&format!("Delete Hash ||{deletehash}||")) .description(&format!("Delete Hash ||{deletehash}||"))
.image(&link) .image(link)
.footer(&format!("Imgurs v{version}"), None) .footer(&format!("Imgurs v{version}"), None)
}) })
}) })

View File

@ -11,7 +11,7 @@
//! your application, simply add it to your project's `Cargo.toml`. //! your application, simply add it to your project's `Cargo.toml`.
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! imgurs = "0.7.1" //! imgurs = "0.7.3"
//! ``` //! ```
//! //!
//! # Example Usage //! # Example Usage