Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release [email protected] and [email protected] #2081

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 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.1" }

# workspace (other)
fvm_ipld_amt = { path = "ipld/amt", version = "0.7.1" }
fvm_ipld_hamt = { path = "ipld/hamt", version = "0.10.1" }
fvm_ipld_kamt = { path = "ipld/kamt", version = "0.4.1" }
fvm_ipld_hamt = { path = "ipld/hamt", version = "0.10.2" }
fvm_ipld_kamt = { path = "ipld/kamt", version = "0.4.2" }
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.2 [2024-11-20]

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

## 0.10.1 [2024-11-08]

Remove unnecessary features from `multihash-codetable`.
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.1"
version = "0.10.2"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand Down
3 changes: 3 additions & 0 deletions ipld/kamt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.4.2 [2024-11-20]

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

## 0.4.1 [2024-11-08]

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.1"
version = "0.4.2"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand Down
Loading