From 09eaaf425d4fb85a05c87ceac6041695a7e72302 Mon Sep 17 00:00:00 2001 From: Nazar Hussain Date: Mon, 30 Mar 2026 15:45:41 +0200 Subject: [PATCH 1/3] revert changes for unrelease files --- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 --------------- package.json | 2 +- 3 files changed, 2 insertions(+), 17 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 47fb725..b725ab0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.2" + ".": "2.0.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a311a3..8636818 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,5 @@ # Changelog -## 2.0.2 (2026-03-30) - -## What's Changed -* fix: use parseAsync to propagate async handler errors to exit code by @lodekeeper in https://github.com/ChainSafe/benchmark/pull/46 -* fix: throw error when benchmarks fail instead of silently dropping results by @lodekeeper in https://github.com/ChainSafe/benchmark/pull/45 -* chore(main): release 2.0.2 by @github-actions[bot] in https://github.com/ChainSafe/benchmark/pull/47 -* chore: remove npm token setup from release workflow by @nazarhussain in https://github.com/ChainSafe/benchmark/pull/48 -* chore(main): release 2.0.3 by @github-actions[bot] in https://github.com/ChainSafe/benchmark/pull/49 -* fix: release workflow by @nazarhussain in https://github.com/ChainSafe/benchmark/pull/50 - -## New Contributors -* @lodekeeper made their first contribution in https://github.com/ChainSafe/benchmark/pull/46 - -**Full Changelog**: https://github.com/ChainSafe/benchmark/compare/v2.0.1...v2.0.2 - ## 2.0.1 (2025-04-30) ## What's Changed diff --git a/package.json b/package.json index 86b2a8c..94aee6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@chainsafe/benchmark", - "version": "2.0.2", + "version": "2.0.1", "repository": "git@github.com:chainsafe/benchmark.git", "author": "ChainSafe Systems", "license": "MIT", From a91a6161c0980cd3af26879b628f91e109556447 Mon Sep 17 00:00:00 2001 From: Nazar Hussain Date: Mon, 30 Mar 2026 15:46:25 +0200 Subject: [PATCH 2/3] fix npm package format with --- package.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 94aee6f..3e8bb72 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,14 @@ { "name": "@chainsafe/benchmark", "version": "2.0.1", - "repository": "git@github.com:chainsafe/benchmark.git", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/chainsafe/benchmark.git" + }, "author": "ChainSafe Systems", "license": "MIT", "bin": { - "benchmark": "./bin/index.js" + "benchmark": "bin/index.js" }, "files": [ "lib/**/*.d.ts", From cdcacae3d04c85f749f393363610f2fe2231af41 Mon Sep 17 00:00:00 2001 From: Nazar Hussain Date: Mon, 30 Mar 2026 15:49:04 +0200 Subject: [PATCH 3/3] fix: npm package repo url --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3e8bb72..0c0cc2b 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "2.0.1", "repository": { "type": "git", - "url": "git+ssh://git@github.com/chainsafe/benchmark.git" + "url": "git+https://github.com/ChainSafe/benchmark.git" }, "author": "ChainSafe Systems", "license": "MIT",