This commit is contained in:
MedzikUser 2022-03-07 19:12:44 +01:00
parent bf796f3358
commit 6f29b8682e
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
3 changed files with 8 additions and 2 deletions

View File

@ -8,8 +8,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header --> <!-- next-header -->
## [Unreleased] ## [Unreleased]
## [0.5.0] - 2022-03-07
### CLI ### CLI
- clipboard: add support for xclip and termux - clipboard: add support for xclip and termux
- webhook: send webhook to discord if image uploaded ([example](https://i.imgur.com/CPpHEec.png))
### Library
- if body length is greater than 30, return message `body is too length`
## [0.4.0] - 2022-02-27 ## [0.4.0] - 2022-02-27
### CLI ### CLI

2
Cargo.lock generated
View File

@ -872,7 +872,7 @@ dependencies = [
[[package]] [[package]]
name = "imgurs" name = "imgurs"
version = "0.4.0" version = "0.5.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"arboard", "arboard",

View File

@ -9,7 +9,7 @@ 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.4.0" version = "0.5.0"
edition = "2021" edition = "2021"
[profile.release] [profile.release]