Skip to content

Commit 7c8c88f

Browse files
committed
v9.1.0
1 parent b32e0a3 commit 7c8c88f

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 9.1.0 (2023-10-21)
4+
5+
- Supports deserialization of unsupported algorithms for JWKs
6+
7+
38
## 9.0.0 (2023-10-16)
49

510
- Update ring

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jsonwebtoken"
3-
version = "9.0.0"
3+
version = "9.1.0"
44
authors = ["Vincent Prouillet <hello@vincentprouillet.com>"]
55
license = "MIT"
66
readme = "README.md"

src/jwk.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#![allow(missing_docs)]
2-
///! This crate contains types only for working JWK and JWK Sets
3-
///! This is only meant to be used to deal with public JWK, not generate ones.
4-
///! Most of the code in this file is taken from https://github.com/lawliet89/biscuit but
5-
/// tweaked to remove the private bits as it's not the goal for this crate currently.
6-
///!
2+
//! This crate contains types only for working JWK and JWK Sets
3+
//! This is only meant to be used to deal with public JWK, not generate ones.
4+
//! Most of the code in this file is taken from https://github.com/lawliet89/biscuit but
5+
//! tweaked to remove the private bits as it's not the goal for this crate currently.
6+
77
use crate::{
88
errors::{self, Error, ErrorKind},
99
Algorithm,

0 commit comments

Comments
 (0)