chore: release 0.8.0

This commit is contained in:
cduvray 2023-02-27 08:46:15 +01:00
parent 1d5bdf83ca
commit 3b2ad550c3
3 changed files with 15 additions and 4 deletions

View file

@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## Unreleased
## 0.8.0 (2023-02-28)
### Added
- validation configuration (exp, nbf, aud, iss, disable_validation)
- more integration tests added
### Fixed
- `JwtAuthorizer.from_ec()`, `JwtAuthorizer.from_ed()` imported PEM as DER resulting in failed validations
## 0.7.0 (2023-02-14) ## 0.7.0 (2023-02-14)
### Changed ### Changed

2
Cargo.lock generated
View file

@ -717,7 +717,7 @@ dependencies = [
[[package]] [[package]]
name = "jwt-authorizer" name = "jwt-authorizer"
version = "0.7.0" version = "0.8.0"
dependencies = [ dependencies = [
"axum", "axum",
"futures-core", "futures-core",

View file

@ -1,7 +1,7 @@
[package] [package]
name = "jwt-authorizer" name = "jwt-authorizer"
description = "jwt authorizer middleware for axum" description = "jwt authorizer middleware for axum"
version = "0.7.0" version = "0.8.0"
edition = "2021" edition = "2021"
authors = ["cduvray <c_duvray@proton.me>"] authors = ["cduvray <c_duvray@proton.me>"]
license = "MIT" license = "MIT"