From 304034f0377fec51c179d0437320112419a36acd Mon Sep 17 00:00:00 2001 From: MedzikUser Date: Sun, 11 Dec 2022 11:05:51 +0100 Subject: [PATCH] chore(release): v0.11.1 --- CHANGELOG.md | 10 +++++++++- Cargo.lock | 4 ++-- Cargo.toml | 2 +- README.md | 2 +- imgurs-cli/Cargo.toml | 2 +- 5 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb2e087..1c6f67a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.11.1] - 2022-12-11 +### Fixed +- `album_title` can be null, `account_id` can be null, string or number #92, thanks to @NotNorom + +### Changed +- Updated dependencies + ## [0.11.0] - 2022-11-07 ### Added - Added `with_http_client` method to ImgurClient #87, thanks to @NotNorom @@ -147,7 +154,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - upload image -[Unreleased]: https://github.com/MedzikUser/imgurs/compare/v0.11.0...HEAD +[Unreleased]: https://github.com/MedzikUser/imgurs/compare/v0.11.1...HEAD +[0.11.1]: https://github.com/MedzikUser/imgurs/commits/v0.11.1 [0.11.0]: https://github.com/MedzikUser/imgurs/commits/v0.11.0 [0.10.0]: https://github.com/MedzikUser/imgurs/commits/v0.10.0 [0.9.1]: https://github.com/MedzikUser/imgurs/commits/v0.9.1 diff --git a/Cargo.lock b/Cargo.lock index 10f1a0b..b917b48 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -849,7 +849,7 @@ dependencies = [ [[package]] name = "imgurs" -version = "0.11.0" +version = "0.11.1" dependencies = [ "base64", "reqwest", @@ -862,7 +862,7 @@ dependencies = [ [[package]] name = "imgurs-cli" -version = "0.11.0" +version = "0.11.1" dependencies = [ "anyhow", "arboard", diff --git a/Cargo.toml b/Cargo.toml index afba588..e989acc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [package] name = "imgurs" -version = "0.11.0" +version = "0.11.1" description = "API for Imgur" license = "BSD-3-Clause" authors = ["MedzikUser "] diff --git a/README.md b/README.md index 42a4165..fcaa8d4 100644 --- a/README.md +++ b/README.md @@ -74,4 +74,4 @@ Download imgurs-windows.exe from [the releases page](https://github.com/MedzikUs ### **Compile with Cargo** Make sure you have a recent version of Rust. Then you can run - cargo install imgurs + cargo install imgurs-cli diff --git a/imgurs-cli/Cargo.toml b/imgurs-cli/Cargo.toml index f217f9c..e3e4923 100644 --- a/imgurs-cli/Cargo.toml +++ b/imgurs-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgurs-cli" -version = "0.11.0" +version = "0.11.1" description = "CLI for Imgur" license = "BSD-3-Clause" authors = ["MedzikUser "]