From 4a1c79ff378206566f1ac15baf2dd3836344d176 Mon Sep 17 00:00:00 2001 From: Bryant Luk Date: Thu, 30 Mar 2023 11:30:50 -0500 Subject: [PATCH] Prepare for v0.8.0 release --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ef52f8..b5be80a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.8.0] - 2023-03-30 + +### Changed + +- Update `p256` dependency to version `0.13.0`. + ## [0.7.0] - 2023-03-02 ### Changed @@ -86,7 +92,8 @@ - Initial implementation. -[Unreleased]: https://github.com/bluk/min_jwt/compare/v0.7.0...HEAD +[Unreleased]: https://github.com/bluk/min_jwt/compare/v0.8.0...HEAD +[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 [0.6.0]: https://github.com/bluk/min_jwt/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/bluk/min_jwt/compare/v0.4.0...v0.5.0 diff --git a/Cargo.toml b/Cargo.toml index f125a08..f244154 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "min_jwt" -version = "0.7.0" +version = "0.8.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 93cff97..6613b5f 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,8 @@ crate, depend on this crate and the relevant dependent crate in your ```toml [dependencies] -min_jwt = { version = "0.7.0", features = [ "p256", "serde", "serde_json"] } -p256 = { version = "0.12.0", features = [ "ecdsa", "jwk", "pem"] } +min_jwt = { version = "0.8.0", features = [ "p256", "serde", "serde_json"] } +p256 = { version = "0.13.0", features = [ "ecdsa", "jwk", "pem"] } ``` Be sure to enable the relevant features as well.