chore(release): v0.11.1

This commit is contained in:
MedzikUser 2022-12-11 11:05:51 +01:00
parent b6e715accf
commit 304034f037
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
5 changed files with 14 additions and 6 deletions

View File

@ -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
<!-- next-url -->
[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

4
Cargo.lock generated
View File

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

View File

@ -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 <medzik@duck.com>"]

View File

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

View File

@ -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 <medzik@duck.com>"]