From 56a9ec33ffe16c4b46b5b74faff545d645a0744e Mon Sep 17 00:00:00 2001 From: ivaylogarnev-limechain Date: Fri, 20 Sep 2024 15:38:00 +0300 Subject: [PATCH 1/3] style: Remove rebundant empty line Signed-off-by: ivaylogarnev-limechain --- src/PrivateKey.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/PrivateKey.js b/src/PrivateKey.js index 960ed1f73..a802053d2 100644 --- a/src/PrivateKey.js +++ b/src/PrivateKey.js @@ -342,7 +342,6 @@ export default class PrivateKey extends Key { transaction.addSignature(this.publicKey, signatures); - // Return directly Uint8Array if there is only one signature return signatures.length === 1 ? signatures[0] : signatures; } From 7ee43e2f47b4158fe0ad564bcffac2b78c46ab28 Mon Sep 17 00:00:00 2001 From: ivaylogarnev-limechain Date: Fri, 20 Sep 2024 15:38:51 +0300 Subject: [PATCH 2/3] docs: Update CHANGELOG Signed-off-by: ivaylogarnev-limechain --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a61600f7..ee8713d68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v2.52.0-beta.1 + +## What's Changed + +* feat: Add multi-signature and multi-node support for signing and adding signatures by @ivaylogarnev-limechain in https://github.com/hashgraph/hedera-sdk-js/pull/2514 +* feat: Add removeSignature/clearAllSignatures methods by @ivaylogarnev-limechain in https://github.com/hashgraph/hedera-sdk-js/pull/2491 +* chore(deps): bump actions/setup-node from 4.0.3 to 4.0.4 by @dependabot in https://github.com/hashgraph/hedera-sdk-js/pull/2538 + ## v2.51.0 ## What's Changed From 9eb9f8b34a33fc74d7b020d4392c481f311d294a Mon Sep 17 00:00:00 2001 From: ivaylogarnev-limechain Date: Fri, 20 Sep 2024 15:39:57 +0300 Subject: [PATCH 3/3] chore: Update package json version Signed-off-by: ivaylogarnev-limechain --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 86126e463..68389e48e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hashgraph/sdk", - "version": "2.51.0", + "version": "2.52.0-beta.1", "description": "Hederaâ„¢ Hashgraph SDK", "types": "./lib/index.d.ts", "main": "./lib/index.cjs",