Skip to content

Commit 8fba79b

Browse files
committed
Ready for release
1 parent f517b9a commit 8fba79b

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

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

3+
## 8.3.0 (2023-03-15)
4+
5+
- Update base64
6+
- Implement Clone for TokenData<T> if T impls Clone
7+
8+
39
## 8.2.0 (2022-12-03)
410

511
- Add DecodingKey::from_jwk

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 = "8.2.0"
3+
version = "8.3.0"
44
authors = ["Vincent Prouillet <hello@vincentprouillet.com>"]
55
license = "MIT"
66
readme = "README.md"

src/validation.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ mod tests {
578578

579579
#[test]
580580
fn aud_string_ok() {
581-
let claims = json!({"aud": ["Everyone"]});
581+
let claims = json!({"aud": "Everyone"});
582582
let mut validation = Validation::new(Algorithm::HS256);
583583
validation.validate_exp = false;
584584
validation.required_spec_claims = HashSet::new();

0 commit comments

Comments
 (0)