Skip to content

Commit 2964a57

Browse files
authored
chore: release master (#466)
1 parent ab23b30 commit 2964a57

File tree

7 files changed

+53
-9
lines changed

7 files changed

+53
-9
lines changed

.release-please-manifest.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"packages/as-sha256": "1.0.0",
3-
"packages/persistent-merkle-tree": "1.0.1",
2+
"packages/as-sha256": "1.1.0",
3+
"packages/persistent-merkle-tree": "1.1.0",
44
"packages/persistent-ts": "1.0.0",
5-
"packages/ssz": "1.0.2"
5+
"packages/ssz": "1.1.0"
66
}

packages/as-sha256/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.1.0](https://github.com/ChainSafe/ssz/compare/as-sha256-v1.0.0...as-sha256-v1.1.0) (2025-03-12)
7+
8+
9+
### Features
10+
11+
* add tests workflow for bun and deno ([#423](https://github.com/ChainSafe/ssz/issues/423)) ([089daed](https://github.com/ChainSafe/ssz/commit/089daeda999ca9887327ef06efa5bdf6507ae0e3))
12+
* improve type.hashTreeRoot() using batch ([#409](https://github.com/ChainSafe/ssz/issues/409)) ([66742f0](https://github.com/ChainSafe/ssz/commit/66742f0faf617f713744048609408365d6185780))
13+
614
## [1.0.0](https://github.com/ChainSafe/ssz/compare/as-sha256-v0.6.1...as-sha256-v1.0.0) (2025-01-23)
715

816

packages/as-sha256/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chainsafe/as-sha256",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "An AssemblyScript implementation of SHA256",
55
"author": "ChainSafe Systems",
66
"license": "Apache-2.0",

packages/persistent-merkle-tree/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,20 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
99
* dependencies
1010
* @chainsafe/as-sha256 bumped to 0.4.2
1111

12+
## [1.1.0](https://github.com/ChainSafe/ssz/compare/persistent-merkle-tree-v1.0.1...persistent-merkle-tree-v1.1.0) (2025-03-12)
13+
14+
15+
### Features
16+
17+
* add tests workflow for bun and deno ([#423](https://github.com/ChainSafe/ssz/issues/423)) ([089daed](https://github.com/ChainSafe/ssz/commit/089daeda999ca9887327ef06efa5bdf6507ae0e3))
18+
19+
20+
### Dependencies
21+
22+
* The following workspace dependencies were updated
23+
* dependencies
24+
* @chainsafe/as-sha256 bumped from 1.0.0 to 1.1.0
25+
1226
## [1.0.1](https://github.com/ChainSafe/ssz/compare/persistent-merkle-tree-v1.0.0...persistent-merkle-tree-v1.0.1) (2025-01-23)
1327

1428

packages/persistent-merkle-tree/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chainsafe/persistent-merkle-tree",
3-
"version": "1.0.1",
3+
"version": "1.1.0",
44
"description": "Merkle tree implemented as a persistent datastructure",
55
"type": "module",
66
"exports": {
@@ -64,7 +64,7 @@
6464
},
6565
"homepage": "https://github.com/ChainSafe/persistent-merkle-tree#readme",
6666
"dependencies": {
67-
"@chainsafe/as-sha256": "1.0.0",
67+
"@chainsafe/as-sha256": "1.1.0",
6868
"@chainsafe/hashtree": "1.0.1",
6969
"@noble/hashes": "^1.3.0"
7070
}

packages/ssz/CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,28 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
99
* dependencies
1010
* @chainsafe/persistent-merkle-tree bumped from 1.0.0 to 1.0.1
1111

12+
## [1.1.0](https://github.com/ChainSafe/ssz/compare/ssz-v1.0.2...ssz-v1.1.0) (2025-03-12)
13+
14+
15+
### Features
16+
17+
* add tests workflow for bun and deno ([#423](https://github.com/ChainSafe/ssz/issues/423)) ([089daed](https://github.com/ChainSafe/ssz/commit/089daeda999ca9887327ef06efa5bdf6507ae0e3))
18+
* forEach() api for ArrayComposite() ([#469](https://github.com/ChainSafe/ssz/issues/469)) ([7ad418c](https://github.com/ChainSafe/ssz/commit/7ad418ce08e6469b562244a14df65f05c1fffdc2))
19+
* improve type.hashTreeRoot() using batch ([#409](https://github.com/ChainSafe/ssz/issues/409)) ([66742f0](https://github.com/ChainSafe/ssz/commit/66742f0faf617f713744048609408365d6185780))
20+
21+
22+
### Bug Fixes
23+
24+
* do not rebind node if unchanged child ViewDUs ([#470](https://github.com/ChainSafe/ssz/issues/470)) ([ab23b30](https://github.com/ChainSafe/ssz/commit/ab23b30ce2d940883816ea9cfbbf2473165353ca))
25+
26+
27+
### Dependencies
28+
29+
* The following workspace dependencies were updated
30+
* dependencies
31+
* @chainsafe/as-sha256 bumped from 1.0.0 to 1.1.0
32+
* @chainsafe/persistent-merkle-tree bumped from 1.0.1 to 1.1.0
33+
1234
## [1.0.2](https://github.com/ChainSafe/ssz/compare/ssz-v1.0.1...ssz-v1.0.2) (2025-01-30)
1335

1436

packages/ssz/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "Apache-2.0",
55
"author": "ChainSafe Systems",
66
"homepage": "https://github.com/chainsafe/ssz",
7-
"version": "1.0.2",
7+
"version": "1.1.0",
88
"type": "module",
99
"main": "./lib/index.js",
1010
"types": "./lib/index.d.ts",
@@ -36,8 +36,8 @@
3636
"download-spec-tests": "node --loader ts-node/esm test/spec/downloadTests.ts"
3737
},
3838
"dependencies": {
39-
"@chainsafe/as-sha256": "1.0.0",
40-
"@chainsafe/persistent-merkle-tree": "1.0.1"
39+
"@chainsafe/as-sha256": "1.1.0",
40+
"@chainsafe/persistent-merkle-tree": "1.1.0"
4141
},
4242
"devDependencies": {
4343
"@lodestar/spec-test-util": "^1.23.1",

0 commit comments

Comments
 (0)