From a265bff745269faaf32933f9c1d4079b753ceed7 Mon Sep 17 00:00:00 2001 From: ivaylogarnev-limechain Date: Tue, 14 Jan 2025 16:50:54 +0200 Subject: [PATCH 1/4] chore: bumped 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 2087bc164..49567c346 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hashgraph/sdk", - "version": "2.57.0-beta.2", + "version": "2.57.0-beta.3", "description": "Hederaâ„¢ Hashgraph SDK", "types": "./lib/index.d.ts", "main": "./lib/index.cjs", From 3b5356c7021297ac6b68182ed9a08afa8576f68a Mon Sep 17 00:00:00 2001 From: ivaylogarnev-limechain Date: Tue, 14 Jan 2025 16:51:12 +0200 Subject: [PATCH 2/4] docs: updated CHANGELOG Signed-off-by: ivaylogarnev-limechain --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 577addd65..3b791b765 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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.57.0-beta.2 +## v2.57.0-beta.3 ## What's Changed * feat: Implement MirrorNodeContractQuery by @ivaylonikolov7 in https://github.com/hashgraph/hedera-sdk-js/pull/2723 From 3d3b5553e63f9d933ae31b4673f279995078785a Mon Sep 17 00:00:00 2001 From: ivaylogarnev-limechain Date: Tue, 14 Jan 2025 16:51:31 +0200 Subject: [PATCH 3/4] fix: Removed > /dev/null in examples Taskfile Signed-off-by: ivaylogarnev-limechain --- examples/Taskfile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Taskfile.yml b/examples/Taskfile.yml index 638cc1b2d..568ab888e 100644 --- a/examples/Taskfile.yml +++ b/examples/Taskfile.yml @@ -9,7 +9,7 @@ tasks: install: cmds: - - pnpm i --frozen-lockfile > /dev/null + - pnpm i --frozen-lockfile run-examples: description: Run JavaScript examples in the "examples" folder From 090084986446745b765e45dee09ce8be4b750af3 Mon Sep 17 00:00:00 2001 From: ivaylogarnev-limechain Date: Tue, 14 Jan 2025 17:28:55 +0200 Subject: [PATCH 4/4] fix: Changed examples task file Signed-off-by: ivaylogarnev-limechain --- examples/Taskfile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Taskfile.yml b/examples/Taskfile.yml index 568ab888e..23c5f61b5 100644 --- a/examples/Taskfile.yml +++ b/examples/Taskfile.yml @@ -9,7 +9,7 @@ tasks: install: cmds: - - pnpm i --frozen-lockfile + - pnpm i --no-frozen-lockfile > /dev/null run-examples: description: Run JavaScript examples in the "examples" folder