From f45568a04474ca050238a4489f73ffe4d3c6fa80 Mon Sep 17 00:00:00 2001 From: cduvray Date: Mon, 3 Apr 2023 07:46:04 +0200 Subject: [PATCH] chore: release 0.9.0 --- CHANGELOG.md | 13 +++++++++++++ Cargo.lock | 2 +- jwt-authorizer/Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0459691..89aa41a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.9.0 (2023-04-14) + +### Added + +- Other sources for jwt token are configurable (#10) + - Cookie + - AuthorizationHeader (default) +- Raw PEM file content as an input for JwtAuthorizer (#15) + +### Changed + +- Remove 'static lifetime requirement (#8) + ## 0.8.1 (2023-03-16) No public API changes, no new features. diff --git a/Cargo.lock b/Cargo.lock index 9e4b90b..7b2bd02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -723,7 +723,7 @@ dependencies = [ [[package]] name = "jwt-authorizer" -version = "0.8.1" +version = "0.9.0" dependencies = [ "axum", "futures-core", diff --git a/jwt-authorizer/Cargo.toml b/jwt-authorizer/Cargo.toml index 9df720a..b75c275 100644 --- a/jwt-authorizer/Cargo.toml +++ b/jwt-authorizer/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "jwt-authorizer" description = "jwt authorizer middleware for axum" -version = "0.8.1" +version = "0.9.0" edition = "2021" authors = ["cduvray "] license = "MIT"