From cf5d85259406b2f1012a7dcaf274b5547b0cbd6d Mon Sep 17 00:00:00 2001 From: Nazar Hussain Date: Fri, 10 Jan 2025 10:10:19 +0100 Subject: [PATCH] Update the readme and package version --- README.md | 5 ++++- package.json | 8 ++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bb38113..cbcf6ee 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # Benchmark +> This is an independently maintained fork of [@dapplion/benchmark](https://github.com/dapplion/benchmark). + This repo now maintains it's own versioning as `@chainsafe/benchmark` and release schedule. It was forked from the base of `@dapplion/benchmark@1.0.0` and new functionality was added. + Ensures that new code does not introduce performance regressions with CI. Tracks: - Do PR against the base branch include a performance regression? @@ -12,7 +15,7 @@ This tooling provides both a easy to use runner for benchmarking and easy integr Create a benchmark test file but use `itBench` instead of `it` ```ts -import {itBench, setBenchOpts, describe} from "../../src"; +import {describe, itBench, setBenchOpts} from "@chainsafe/benchmark"; describe("Sum array benchmark", () => { itBench("sum array with reduce", () => { diff --git a/package.json b/package.json index 7e7b9b8..1fcf74e 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { - "name": "@dapplion/benchmark", - "version": "1.0.0", - "repository": "git@github.com:dapplion/benchmark.git", - "author": "dapplion <35266934+dapplion@users.noreply.github.com>", + "name": "@chainsafe/benchmark", + "version": "1.1.0.rc-0", + "repository": "git@github.com:chainsafe/benchmark.git", + "author": "ChainSafe Systems", "license": "MIT", "bin": { "benchmark": "./bin/index.js"