Skip to content

Commit ed6d34a

Browse files
authored
chore: release kamt/hamt to add a clear method (#2096)
- fvm_ipld_hamt@v0.10.3 - fvm_ipld_kamt@v0.4.3
1 parent 2212380 commit ed6d34a

File tree

6 files changed

+50
-42
lines changed

6 files changed

+50
-42
lines changed

Cargo.lock

+38-38
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.3" }
8080

8181
# workspace (other)
8282
fvm_ipld_amt = { path = "ipld/amt", version = "0.7.3" }
83-
fvm_ipld_hamt = { path = "ipld/hamt", version = "0.10.2" }
84-
fvm_ipld_kamt = { path = "ipld/kamt", version = "0.4.2" }
83+
fvm_ipld_hamt = { path = "ipld/hamt", version = "0.10.3" }
84+
fvm_ipld_kamt = { path = "ipld/kamt", version = "0.4.3" }
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.3 [2024-12-04]
8+
9+
- Add a `.clear()` method for resetting the HAMT to empty.
10+
711
## 0.10.2 [2024-11-20]
812

913
Empty-release intended to un-deprecate `.for_each` but it was never actually deprecated in this crate.

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.2"
4+
version = "0.10.3"
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

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.4.3 [2024-12-04]
4+
5+
- Add a `.clear()` method for resetting the KAMT to empty.
6+
37
## 0.4.2 [2024-11-20]
48

59
- Un-deprecate `.for_each(...)`. The `.iter()` method is still preferred but `.for_each(...)` is still useful.

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.2"
4+
version = "0.4.3"
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)