Skip to content

Commit

Permalink
chore(release): v0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
M3DZIK committed May 18, 2022
1 parent f4e0044 commit fb72dc1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "imgurs"
version = "0.7.3"
description = "API and CLI for Imgur"
license = "BSD-3-Clause"
readme = "README.md"
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions src/cli/webhook.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
})
})
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fb72dc1

Please sign in to comment.