From 5b99335da6042fb43c3fb4b0bcd0b2077415f07f Mon Sep 17 00:00:00 2001 From: cduvray Date: Thu, 16 Mar 2023 07:14:50 +0100 Subject: [PATCH] chore: release 0.8.1 --- CHANGELOG.md | 6 +++++- Cargo.lock | 2 +- jwt-authorizer/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96c0709..0459691 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased -## 0.8.1 (?-?-?) +## 0.8.1 (2023-03-16) No public API changes, no new features. @@ -15,6 +15,10 @@ No public API changes, no new features. - KeyStore, KeySource refactor for better performance and security +### Fixed + +- Allow non root OIDC issuer (issue #1) + ## 0.8.0 (2023-02-28) ### Added diff --git a/Cargo.lock b/Cargo.lock index 6125fc4..9e4b90b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -723,7 +723,7 @@ dependencies = [ [[package]] name = "jwt-authorizer" -version = "0.8.0" +version = "0.8.1" dependencies = [ "axum", "futures-core", diff --git a/jwt-authorizer/Cargo.toml b/jwt-authorizer/Cargo.toml index 32fa57e..9df720a 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.0" +version = "0.8.1" edition = "2021" authors = ["cduvray "] license = "MIT"