From 57461ab7902ee1f5cafbc3aafa02765e1e124172 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 18 Jan 2024 04:03:26 +0000 Subject: [PATCH] chore(release): 8.0.0 [skip ci] # [8.0.0](https://github.com/decentralized-identity/did-jwt/compare/7.4.7...8.0.0) (2024-01-18) ### Features * add support for Multikey ([#305](https://github.com/decentralized-identity/did-jwt/issues/305)) ([20bbc3e](https://github.com/decentralized-identity/did-jwt/commit/20bbc3ebd6b69e4f07e6817004804abe23523835)), closes [#304](https://github.com/decentralized-identity/did-jwt/issues/304) ### BREAKING CHANGES * The return types have changed for of `extractPublicKeyBytes()` and `multibaseToBytes()` from Uint8Arrays to Objects containing the `keyBytes: Uint8Array` and a decoded or inferred `keyType: string | undefined` --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12aad096..bf9fea34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [8.0.0](https://github.com/decentralized-identity/did-jwt/compare/7.4.7...8.0.0) (2024-01-18) + + +### Features + +* add support for Multikey ([#305](https://github.com/decentralized-identity/did-jwt/issues/305)) ([20bbc3e](https://github.com/decentralized-identity/did-jwt/commit/20bbc3ebd6b69e4f07e6817004804abe23523835)), closes [#304](https://github.com/decentralized-identity/did-jwt/issues/304) + + +### BREAKING CHANGES + +* The return types have changed for of `extractPublicKeyBytes()` and `multibaseToBytes()` from Uint8Arrays to Objects containing the `keyBytes: Uint8Array` and a decoded or inferred `keyType: string | undefined` + ## [7.4.7](https://github.com/decentralized-identity/did-jwt/compare/7.4.6...7.4.7) (2023-12-13) diff --git a/package.json b/package.json index 15617b04..fd5ef902 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "did-jwt", - "version": "7.4.7", + "version": "8.0.0", "description": "Library for Signing and Verifying JWTs that use DIDs as issuers and JWEs that use DIDs as recipients", "type": "module", "source": "src/index.ts",