Skip to content

Commit

Permalink
v0.4.0 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
cottinisimone authored Nov 11, 2022
1 parent e134da1 commit 97334b5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jwks_client_rs"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
authors = ["Mite Ristovski <[email protected]>", "Simone Cottini <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 97334b5

Please sign in to comment.