diff --git a/CHANGELOG.md b/CHANGELOG.md index 625bd33..a879909 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.5.0](https://github.com/chenhunghan/jwks/compare/v0.4.0...v0.5.0) (2025-09-21) + + +### Features + +* when providing a custom client, pass it all the way through ([#19](https://github.com/chenhunghan/jwks/issues/19)) ([9e587ee](https://github.com/chenhunghan/jwks/commit/9e587eef6407971f7367d76bd66f65896e7d7297)) + ## [0.4.0](https://github.com/chenhunghan/jwks/compare/v0.3.0...v0.4.0) (2025-02-27) diff --git a/Cargo.lock b/Cargo.lock index 05011b7..abda9ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -947,7 +947,7 @@ dependencies = [ [[package]] name = "jwks" -version = "0.4.0" +version = "0.5.0" dependencies = [ "base64 0.22.1", "httpmock", diff --git a/Cargo.toml b/Cargo.toml index d6b8482..29bf1b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jwks" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["Hung-Han Chen "] description = "A library for retrieving and parsing JSON Web Key Sets (JWKS)"