diff --git a/CHANGELOG.md b/CHANGELOG.md index 2247e9d..4be3b72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +--- + +## [0.4.0] - 2022-11-11 + ### Added - Is now possible to know if the error is caused by expired jwt (useful for refreshing purposes) @@ -17,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - README code example updated with the latest changes. - *BREAKING* [#11](https://github.com/primait/jwks_client/issues/11) - avoid require owned string as params in getters +--- + ## [0.3.0] - 2022-04-01 ### Added @@ -29,6 +35,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Removed `JwksClient::new` function. +--- + ## [0.2.0] - 2022-03-14 ### Added @@ -42,13 +50,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Changed cache TTL duration set from 1 minute to 1 day. +--- + ## [0.1.0] - 2021-10-28 ### Added - First release 🎉 -[Unreleased]: https://github.com/primait/jwks_client/compare/0.3.0...HEAD +[Unreleased]: https://github.com/primait/jwks_client/compare/0.4.0...HEAD +[0.4.0]: https://github.com/primait/jwks_client/compare/0.3.0...0.4.0 [0.3.0]: https://github.com/primait/jwks_client/compare/0.2.0...0.3.0 [0.2.0]: https://github.com/primait/jwks_client/compare/0.1.0...0.2.0 [0.1.0]: https://github.com/primait/jwks_client/releases/tag/0.1.0 diff --git a/Cargo.toml b/Cargo.toml index c5ce0e6..03c0891 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jwks_client_rs" -version = "0.3.0" +version = "0.4.0" edition = "2021" authors = ["Mite Ristovski ", "Simone Cottini "] license = "MIT" diff --git a/README.md b/README.md index 949a140..d6d3aea 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Add to your `Cargo.toml` ```toml # Cargo.toml [dependencies] -jwks_client_rs = "0.3.0" +jwks_client_rs = "0.4.0" ``` ## Code example