From ae56d9f92bf46c9de6bb537c321bbba2e613efa4 Mon Sep 17 00:00:00 2001 From: Mike Engel Date: Mon, 27 May 2024 09:40:53 +0200 Subject: [PATCH] chore: Prepare 6.1.0 release --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af2b407..91669da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Unreleased +# 6.1.0 + +> 2024-05-27 + +#### New features +- Add JWKS support for all supported algorithms #311 +- Add shell completion #325 +- Add `--keep-payload-order` option to keep the payload order the same #301 +- Add support for inline JWKS secrets for JWT decoding #299 + +#### Changes +- Update `jsonwebtoken` to version 9 #311 + +#### Fixes +- Fix inline JWKS secrets for ES256/384 algorithms #310 + # 6.0.0 > 2023-06-22 diff --git a/Cargo.lock b/Cargo.lock index 96112d5..ed43c10 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -421,7 +421,7 @@ dependencies = [ [[package]] name = "jwt-cli" -version = "6.0.0" +version = "6.1.0" dependencies = [ "atty", "bunt", diff --git a/Cargo.toml b/Cargo.toml index 51d79b8..de3c987 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "jwt-cli" description = "A super fast CLI tool to decode and encode JWTs built in Rust" -version = "6.0.0" +version = "6.1.0" repository = "https://github.com/mike-engel/jwt-cli" authors = ["Mike Engel ", "Corey McGregor ", "Aaron Schaef ", "Hugh Simpson "] edition = "2021"