From 26c3b409dc8d9ac9b2bdb6809219f8e3f76a0650 Mon Sep 17 00:00:00 2001 From: Bryant Luk Date: Mon, 2 Oct 2023 17:07:14 -0500 Subject: [PATCH] Prepare for v0.10.0 release --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82111a1..a040f5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.10.0] - 2023-10-02 + +### Changed + +- Update `ring` dependency to version `0.10.0`. + ## [0.9.0] - 2023-05-02 ### Changed @@ -99,7 +105,8 @@ - Initial implementation. -[Unreleased]: https://github.com/bluk/min_jwt/compare/v0.9.0...HEAD +[Unreleased]: https://github.com/bluk/min_jwt/compare/v0.10.0...HEAD +[0.10.0]: https://github.com/bluk/min_jwt/compare/v0.9.0...v0.10.0 [0.9.0]: https://github.com/bluk/min_jwt/compare/v0.8.0...v0.9.0 [0.8.0]: https://github.com/bluk/min_jwt/compare/v0.7.0...v0.8.0 [0.7.0]: https://github.com/bluk/min_jwt/compare/v0.6.0...v0.7.0 diff --git a/Cargo.toml b/Cargo.toml index 49a9aea..cd6c373 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "min_jwt" -version = "0.9.0" +version = "0.10.0" license = "MIT OR Apache-2.0" description = "Minimal JSON Web Token library" repository = "https://github.com/bluk/min_jwt" diff --git a/README.md b/README.md index 125cb0d..e2f603f 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ crate, depend on this crate and the relevant dependent crate in your ```toml [dependencies] -min_jwt = { version = "0.9.0", features = [ "p256", "serde", "serde_json"] } +min_jwt = { version = "0.10.0", features = [ "p256", "serde", "serde_json"] } p256 = { version = "0.13.0", features = [ "ecdsa", "jwk", "pem"] } ```