From 62709613fd486a719f0fbc1391508df66fa8f63e Mon Sep 17 00:00:00 2001 From: ivaylogarnev Date: Fri, 20 Sep 2024 16:42:07 +0300 Subject: [PATCH] release: v2.52.0-beta.1 (#2539) * style: Remove rebundant empty line Signed-off-by: ivaylogarnev-limechain * docs: Update CHANGELOG Signed-off-by: ivaylogarnev-limechain * chore: Update package json version Signed-off-by: ivaylogarnev-limechain --------- Signed-off-by: ivaylogarnev-limechain --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- src/PrivateKey.js | 1 - 3 files changed, 9 insertions(+), 2 deletions(-) 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 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", 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; }