From b314e4da0f2d75350cbb1d774a99b4ff2083cea4 Mon Sep 17 00:00:00 2001 From: Matthew Keil Date: Wed, 15 Jan 2025 16:59:23 +0700 Subject: [PATCH] chore: release mkeil/remove-release-as-versions --- .release-please-manifest.json | 6 +++--- packages/as-sha256/CHANGELOG.md | 12 ++++++++++++ packages/as-sha256/package.json | 2 +- packages/persistent-merkle-tree/CHANGELOG.md | 17 +++++++++++++++++ packages/persistent-merkle-tree/package.json | 4 ++-- packages/ssz/CHANGELOG.md | 15 +++++++++++++++ packages/ssz/package.json | 6 +++--- 7 files changed, 53 insertions(+), 9 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ffdfb637..4748b18a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { - "packages/as-sha256": "0.5.0", - "packages/persistent-merkle-tree": "0.8.0", + "packages/as-sha256": "0.6.0", + "packages/persistent-merkle-tree": "0.9.0", "packages/persistent-ts": "0.19.1", - "packages/ssz": "0.18.0" + "packages/ssz": "0.19.0" } \ No newline at end of file diff --git a/packages/as-sha256/CHANGELOG.md b/packages/as-sha256/CHANGELOG.md index 8ea4467a..68cec1ef 100644 --- a/packages/as-sha256/CHANGELOG.md +++ b/packages/as-sha256/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.0](https://github.com/chainsafe/ssz/compare/as-sha256-v0.5.0...as-sha256-v0.6.0) (2025-01-15) + + +### Features + +* non simd sha256 for incompatible systems ([#427](https://github.com/chainsafe/ssz/issues/427)) ([9729005](https://github.com/chainsafe/ssz/commit/9729005ab0fd401c30e999b20133c4bb6373ded6)) + + +### Bug Fixes + +* add homepage/repo etc to as-sha256 package.json ([#401](https://github.com/chainsafe/ssz/issues/401)) ([1dc50ef](https://github.com/chainsafe/ssz/commit/1dc50ef2985a03c315bbce44165cd271a4a6e2df)) + ## [0.5.0](https://github.com/ChainSafe/ssz/compare/as-sha256-v0.5.0...as-sha256-v0.5.0) (2024-10-15) diff --git a/packages/as-sha256/package.json b/packages/as-sha256/package.json index 484e7fba..104d6e16 100644 --- a/packages/as-sha256/package.json +++ b/packages/as-sha256/package.json @@ -1,6 +1,6 @@ { "name": "@chainsafe/as-sha256", - "version": "0.5.0", + "version": "0.6.0", "description": "An AssemblyScript implementation of SHA256", "author": "ChainSafe Systems", "license": "Apache-2.0", diff --git a/packages/persistent-merkle-tree/CHANGELOG.md b/packages/persistent-merkle-tree/CHANGELOG.md index 94201cc4..62daa9c2 100644 --- a/packages/persistent-merkle-tree/CHANGELOG.md +++ b/packages/persistent-merkle-tree/CHANGELOG.md @@ -9,6 +9,23 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline * dependencies * @chainsafe/as-sha256 bumped to 0.4.2 +## [0.9.0](https://github.com/chainsafe/ssz/compare/persistent-merkle-tree-v0.8.0...persistent-merkle-tree-v0.9.0) (2025-01-15) + + +### Features + +* implement merkleizeBlockArray ([#421](https://github.com/chainsafe/ssz/issues/421)) ([e58781f](https://github.com/chainsafe/ssz/commit/e58781feb7c9a956b66f1109fc639bdb86326293)) +* implement ViewDU.batchHashTreeRoot() ([#392](https://github.com/chainsafe/ssz/issues/392)) ([8dd6600](https://github.com/chainsafe/ssz/commit/8dd6600ad41e9a0d25182ca50f0ffd9be7fc5b8c)) +* non simd sha256 for incompatible systems ([#427](https://github.com/chainsafe/ssz/issues/427)) ([9729005](https://github.com/chainsafe/ssz/commit/9729005ab0fd401c30e999b20133c4bb6373ded6)) +* snapshot apis for EIP-4881 ([#400](https://github.com/chainsafe/ssz/issues/400)) ([32fb35a](https://github.com/chainsafe/ssz/commit/32fb35ad3dcb67465c04dcaf5d7afd93af5219e8)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @chainsafe/as-sha256 bumped from 0.5.0 to 0.6.0 + ## [0.8.0](https://github.com/ChainSafe/ssz/compare/persistent-merkle-tree-v0.8.0...persistent-merkle-tree-v0.8.0) (2024-10-15) diff --git a/packages/persistent-merkle-tree/package.json b/packages/persistent-merkle-tree/package.json index b01b3957..ba28a326 100644 --- a/packages/persistent-merkle-tree/package.json +++ b/packages/persistent-merkle-tree/package.json @@ -1,6 +1,6 @@ { "name": "@chainsafe/persistent-merkle-tree", - "version": "0.8.0", + "version": "0.9.0", "description": "Merkle tree implemented as a persistent datastructure", "type": "module", "module": "./lib/index.js", @@ -43,7 +43,7 @@ }, "homepage": "https://github.com/ChainSafe/persistent-merkle-tree#readme", "dependencies": { - "@chainsafe/as-sha256": "0.5.0", + "@chainsafe/as-sha256": "0.6.0", "@chainsafe/hashtree": "1.0.1", "@noble/hashes": "^1.3.0" } diff --git a/packages/ssz/CHANGELOG.md b/packages/ssz/CHANGELOG.md index b5f3d003..fff87789 100644 --- a/packages/ssz/CHANGELOG.md +++ b/packages/ssz/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.19.0](https://github.com/chainsafe/ssz/compare/ssz-v0.18.0...ssz-v0.19.0) (2025-01-15) + + +### Features + +* non simd sha256 for incompatible systems ([#427](https://github.com/chainsafe/ssz/issues/427)) ([9729005](https://github.com/chainsafe/ssz/commit/9729005ab0fd401c30e999b20133c4bb6373ded6)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @chainsafe/as-sha256 bumped from 0.5.0 to 0.6.0 + * @chainsafe/persistent-merkle-tree bumped from 0.8.0 to 0.9.0 + ## [0.18.0](https://github.com/ChainSafe/ssz/compare/ssz-v0.17.1...ssz-v0.18.0) (2024-10-15) diff --git a/packages/ssz/package.json b/packages/ssz/package.json index d5c3e599..ad056265 100644 --- a/packages/ssz/package.json +++ b/packages/ssz/package.json @@ -4,7 +4,7 @@ "license": "Apache-2.0", "author": "ChainSafe Systems", "homepage": "https://github.com/chainsafe/ssz", - "version": "0.18.0", + "version": "0.19.0", "type": "module", "main": "./lib/cjs/index.js", "module": "./lib/index.js", @@ -41,8 +41,8 @@ "download-spec-tests": "node --loader ts-node/esm test/spec/downloadTests.ts" }, "dependencies": { - "@chainsafe/as-sha256": "0.5.0", - "@chainsafe/persistent-merkle-tree": "0.8.0" + "@chainsafe/as-sha256": "0.6.0", + "@chainsafe/persistent-merkle-tree": "0.9.0" }, "devDependencies": { "@lodestar/spec-test-util": "^1.23.1",