Skip to content

Commit 33a3f7f

Browse files
authored
chore: release fvm_ipld_kamt@v0.4.2 and fvm_ipld_hamt@v0.10.2 (#2081)
1 parent 0426f34 commit 33a3f7f

File tree

6 files changed

+16
-9
lines changed

6 files changed

+16
-9
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ fvm_integration_tests = { path = "testing/integration", version = "~4.5.1" }
8080

8181
# workspace (other)
8282
fvm_ipld_amt = { path = "ipld/amt", version = "0.7.1" }
83-
fvm_ipld_hamt = { path = "ipld/hamt", version = "0.10.1" }
84-
fvm_ipld_kamt = { path = "ipld/kamt", version = "0.4.1" }
83+
fvm_ipld_hamt = { path = "ipld/hamt", version = "0.10.2" }
84+
fvm_ipld_kamt = { path = "ipld/kamt", version = "0.4.2" }
8585
fvm_ipld_car = { path = "ipld/car", version = "0.8.1" }
8686
fvm_ipld_blockstore = { path = "ipld/blockstore", version = "0.3.1" }
8787
fvm_ipld_bitfield = { path = "ipld/bitfield", version = "0.7.1" }

ipld/hamt/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Changes to the reference FVM's HAMT implementation.
44

55
## [Unreleased]
66

7+
## 0.10.2 [2024-11-20]
8+
9+
- Un-deprecate `.for_each(...)` and related functions. The `.iter()` method is still preferred but `.for_each(...)` is still useful.
10+
711
## 0.10.1 [2024-11-08]
812

913
Remove unnecessary features from `multihash-codetable`.

ipld/hamt/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fvm_ipld_hamt"
33
description = "Sharded IPLD HashMap implementation."
4-
version = "0.10.1"
4+
version = "0.10.2"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2021"

ipld/kamt/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 0.4.2 [2024-11-20]
4+
5+
- Un-deprecate `.for_each(...)`. The `.iter()` method is still preferred but `.for_each(...)` is still useful.
36

47
## 0.4.1 [2024-11-08]
58

ipld/kamt/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fvm_ipld_kamt"
33
description = "Sharded IPLD Map implementation with level skipping."
4-
version = "0.4.1"
4+
version = "0.4.2"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2021"

0 commit comments

Comments
 (0)