Skip to content

Commit

Permalink
chore: release kamt/hamt to add a clear method (#2096)
Browse files Browse the repository at this point in the history
- fvm_ipld_hamt@v0.10.3
- fvm_ipld_kamt@v0.4.3
  • Loading branch information
Stebalien authored Dec 4, 2024
1 parent 2212380 commit ed6d34a
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 42 deletions.
76 changes: 38 additions & 38 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ fvm_integration_tests = { path = "testing/integration", version = "~4.5.3" }

# workspace (other)
fvm_ipld_amt = { path = "ipld/amt", version = "0.7.3" }
fvm_ipld_hamt = { path = "ipld/hamt", version = "0.10.2" }
fvm_ipld_kamt = { path = "ipld/kamt", version = "0.4.2" }
fvm_ipld_hamt = { path = "ipld/hamt", version = "0.10.3" }
fvm_ipld_kamt = { path = "ipld/kamt", version = "0.4.3" }
fvm_ipld_car = { path = "ipld/car", version = "0.8.1" }
fvm_ipld_blockstore = { path = "ipld/blockstore", version = "0.3.1" }
fvm_ipld_bitfield = { path = "ipld/bitfield", version = "0.7.1" }
Expand Down
4 changes: 4 additions & 0 deletions ipld/hamt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Changes to the reference FVM's HAMT implementation.

## [Unreleased]

## 0.10.3 [2024-12-04]

- Add a `.clear()` method for resetting the HAMT to empty.

## 0.10.2 [2024-11-20]

Empty-release intended to un-deprecate `.for_each` but it was never actually deprecated in this crate.
Expand Down
2 changes: 1 addition & 1 deletion ipld/hamt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_ipld_hamt"
description = "Sharded IPLD HashMap implementation."
version = "0.10.2"
version = "0.10.3"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand Down
4 changes: 4 additions & 0 deletions ipld/kamt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.4.3 [2024-12-04]

- Add a `.clear()` method for resetting the KAMT to empty.

## 0.4.2 [2024-11-20]

- Un-deprecate `.for_each(...)`. The `.iter()` method is still preferred but `.for_each(...)` is still useful.
Expand Down
2 changes: 1 addition & 1 deletion ipld/kamt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_ipld_kamt"
description = "Sharded IPLD Map implementation with level skipping."
version = "0.4.2"
version = "0.4.3"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand Down

0 comments on commit ed6d34a

Please sign in to comment.