This commit is contained in:
Medzik 2022-02-27 12:41:49 +01:00
parent f0a52fa512
commit d59b7240b3
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
3 changed files with 7 additions and 3 deletions

View File

@ -8,11 +8,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header --> <!-- next-header -->
## [Unreleased] ## [Unreleased]
## [0.4.0] - 2022-02-27
### CLI ### CLI
- update logger - update logger
- added clipboard - added clipboard
- added manpage - added manpage
- added completion for elvish - added completion for elvish
- if failed to upload image send notify with error message
### Library ### Library
- added Clone derive - added Clone derive
@ -60,7 +63,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- upload image - upload image
<!-- next-url --> <!-- next-url -->
[Unreleased]: https://github.com/MedzikUser/imgurs/compare/v0.3.0...HEAD [Unreleased]: https://github.com/MedzikUser/imgurs/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/MedzikUser/imgurs/commits/v0.4.0
[0.3.0]: https://github.com/MedzikUser/imgurs/commits/v0.3.0 [0.3.0]: https://github.com/MedzikUser/imgurs/commits/v0.3.0
[0.2.0]: https://github.com/MedzikUser/imgurs/commits/v0.2.0 [0.2.0]: https://github.com/MedzikUser/imgurs/commits/v0.2.0
[0.1.0]: https://github.com/MedzikUser/imgurs/commits/v0.1.0 [0.1.0]: https://github.com/MedzikUser/imgurs/commits/v0.1.0

2
Cargo.lock generated
View File

@ -859,7 +859,7 @@ dependencies = [
[[package]] [[package]]
name = "imgurs" name = "imgurs"
version = "0.3.0" version = "0.4.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.3.0" version = "0.4.0"
edition = "2021" edition = "2021"
[profile.release] [profile.release]