Skip to content

Commit

Permalink
v9.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Keats committed Oct 21, 2023
1 parent b32e0a3 commit 7c8c88f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 9.1.0 (2023-10-21)

- Supports deserialization of unsupported algorithms for JWKs


## 9.0.0 (2023-10-16)

- Update ring
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jsonwebtoken"
version = "9.0.0"
version = "9.1.0"
authors = ["Vincent Prouillet <hello@vincentprouillet.com>"]
license = "MIT"
readme = "README.md"
Expand Down
10 changes: 5 additions & 5 deletions src/jwk.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#![allow(missing_docs)]
///! This crate contains types only for working JWK and JWK Sets
///! This is only meant to be used to deal with public JWK, not generate ones.
///! Most of the code in this file is taken from https://github.com/lawliet89/biscuit but
/// tweaked to remove the private bits as it's not the goal for this crate currently.
///!
//! This crate contains types only for working JWK and JWK Sets
//! This is only meant to be used to deal with public JWK, not generate ones.
//! Most of the code in this file is taken from https://github.com/lawliet89/biscuit but
//! tweaked to remove the private bits as it's not the goal for this crate currently.
use crate::{
errors::{self, Error, ErrorKind},
Algorithm,
Expand Down

0 comments on commit 7c8c88f

Please sign in to comment.