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]]
name = "imgurs"
version = "0.7.2"
version = "0.7.3"
dependencies = [
"anyhow",
"arboard",

View File

@ -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]

View File

@ -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)
})
})

View File

@ -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