diff --git a/CHANGELOG.md b/CHANGELOG.md index d1249c2..e26515d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.8.0] - 2022-06-18 +- add custom `Error` type +- move api requests to `requests/` mod +- comment code + ## [0.7.4] - 2022-05-18 ### HOTFIX - fixed built on macos and windows @@ -119,7 +124,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - upload image -[Unreleased]: https://github.com/MedzikUser/imgurs/compare/v0.7.4...HEAD +[Unreleased]: https://github.com/MedzikUser/imgurs/compare/v0.8.0...HEAD +[0.7.4]: https://github.com/MedzikUser/imgurs/commits/v0.8.0 [0.7.4]: https://github.com/MedzikUser/imgurs/commits/v0.7.4 [0.7.3]: https://github.com/MedzikUser/imgurs/commits/v0.7.3 [0.7.2]: https://github.com/MedzikUser/imgurs/commits/v0.7.2 diff --git a/Cargo.lock b/Cargo.lock index 8aa1e84..cb89cf6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -844,7 +844,7 @@ dependencies = [ [[package]] name = "imgurs" -version = "0.7.4" +version = "0.8.0" dependencies = [ "anyhow", "arboard", diff --git a/Cargo.toml b/Cargo.toml index 5850464..17cc5c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgurs" -version = "0.7.4" +version = "0.8.0" description = "API and CLI for Imgur" license = "BSD-3-Clause" readme = "README.md" diff --git a/src/lib.rs b/src/lib.rs index c6f95c0..34c080f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -19,7 +19,7 @@ //! your application, simply add it to your project's `Cargo.toml`. //! ```toml //! [dependencies] -//! imgurs = "0.7.3" +//! imgurs = "0.8.0" //! ``` //! //! # Example Usage