Skip to content

Commit 9172edc

Browse files
authored
chore: release all crates (#2074)
- `fvm`, `fvm_shared`, `fvm_sdk`, and `fvm_integration_tests` 4.5.1 - `fvm_ipld_bitfield` 0.7.1 - `fvm_ipld_amt` 0.7.1 - `fvm_ipld_hamt` 0.10.1 - `fvm_ipld_kamt` 0.4.1 - `fvm_ipld_car` 0.8.1 - `fvm_ipld_blockstore` 0.3.1 - `fvm_ipld_encoding` 0.5.1
1 parent 85412de commit 9172edc

19 files changed

+161
-120
lines changed

Cargo.lock

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

Cargo.toml

+12-12
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ members = [
1919
]
2020

2121
[workspace.package]
22-
version = "4.5.0"
22+
version = "4.5.1"
2323
license = "MIT OR Apache-2.0"
2424
edition = "2021"
2525
repository = "https://github.com/filecoin-project/ref-fvm"
@@ -73,19 +73,19 @@ minstant = "0.1.3"
7373
coverage-helper = "0.2.0"
7474

7575
# workspace (FVM)
76-
fvm = { path = "fvm", version = "~4.5.0", default-features = false }
77-
fvm_shared = { path = "shared", version = "~4.5.0", default-features = false }
78-
fvm_sdk = { path = "sdk", version = "~4.5.0" }
79-
fvm_integration_tests = { path = "testing/integration", version = "~4.5.0" }
76+
fvm = { path = "fvm", version = "~4.5.1", default-features = false }
77+
fvm_shared = { path = "shared", version = "~4.5.1", default-features = false }
78+
fvm_sdk = { path = "sdk", version = "~4.5.1" }
79+
fvm_integration_tests = { path = "testing/integration", version = "~4.5.1" }
8080

8181
# workspace (other)
82-
fvm_ipld_amt = { path = "ipld/amt", version = "0.7.0" }
83-
fvm_ipld_hamt = { path = "ipld/hamt", version = "0.10.0" }
84-
fvm_ipld_kamt = { path = "ipld/kamt", version = "0.4.0" }
85-
fvm_ipld_car = { path = "ipld/car", version = "0.8.0" }
86-
fvm_ipld_blockstore = { path = "ipld/blockstore", version = "0.3.0" }
87-
fvm_ipld_bitfield = { path = "ipld/bitfield", version = "0.7.0" }
88-
fvm_ipld_encoding = { path = "ipld/encoding", version = "0.5.0" }
82+
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" }
85+
fvm_ipld_car = { path = "ipld/car", version = "0.8.1" }
86+
fvm_ipld_blockstore = { path = "ipld/blockstore", version = "0.3.1" }
87+
fvm_ipld_bitfield = { path = "ipld/bitfield", version = "0.7.1" }
88+
fvm_ipld_encoding = { path = "ipld/encoding", version = "0.5.1" }
8989
fvm_gas_calibration_shared = { path = "testing/calibration/shared" }
9090
fvm_test_actors = { path = "testing/test_actors" }
9191

fvm/CHANGELOG.md

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

55
## [Unreleased]
66

7+
## 4.5.1 [2024-11-08]
8+
9+
Remove unnecessary features from `multihash-codetable`.
10+
711
## 4.5.0 [2024-10-31]
812

913
- Update `cid` to v0.11 and `multihash` to v0.19.

ipld/amt/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## 0.7.1 [2024-11-08]
6+
7+
Remove unnecessary features from `multihash-codetable`.
8+
59
## 0.7.0 [2024-10-31]
610

711
- Update `cid` to v0.11 and `multihash` to v0.19.

ipld/amt/Cargo.toml

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

ipld/bitfield/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Changes to Filecoin's Bitfield library.
44

55
## [Unreleased]
66

7+
## 0.3.1 [2024-11-08]
8+
9+
Remove unnecessary features from `multihash-codetable`.
10+
711
## 0.3.0 [2024-10-31]
812

913
- Update `cid` to v0.11 and `multihash` to v0.19.

ipld/bitfield/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fvm_ipld_bitfield"
33
description = "Bitfield logic for use in Filecoin actors"
4-
version = "0.7.0"
4+
version = "0.7.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2021"

ipld/blockstore/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Changes to the FVM's Blockstore abstraction
44

55
## [Unreleased]
66

7+
## 0.3.1 [2024-11-08]
8+
9+
Remove unnecessary features from `multihash-codetable`.
10+
711
## 0.3.0 [2024-10-31]
812

913
Update cid to v0.11 and multihash to v0.19.

ipld/blockstore/Cargo.toml

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

ipld/car/CHANGELOG.md

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

55
## [Unreleased]
66

7+
## 0.8.1 [2024-11-08]
8+
9+
Remove unnecessary features from `multihash-codetable`.
10+
711
## 0.8.0 [2024-10-31]
812

913
- Update `cid` to v0.11 and `multihash` to v0.19.

ipld/car/Cargo.toml

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

ipld/encoding/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Changes to the FVM's shared encoding utilities.
44

55
## [Unreleased]
66

7+
## 0.5.1 [2024-11-08]
8+
9+
Remove unnecessary features from `multihash-codetable`.
10+
711
## 0.5.0 [2024-10-31]
812

913
Update `cid` to v0.11 and `multihash` to v0.19.

ipld/encoding/Cargo.toml

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

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.1 [2024-11-08]
8+
9+
Remove unnecessary features from `multihash-codetable`.
10+
711
## 0.10.0 [2024-10-31]
812

913
- Update `cid` to v0.11 and `multihash` to v0.19.

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.0"
4+
version = "0.10.1"
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

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

3+
4+
## 0.4.1 [2024-11-08]
5+
6+
Remove unnecessary features from `multihash-codetable`.
7+
38
## 0.4.0 [2024-10-31]
49

510
- Update `cid` to v0.11 and `multihash` to v0.19.

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.0"
4+
version = "0.4.1"
55
license = "MIT OR Apache-2.0"
66
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
77
edition = "2021"

sdk/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## 4.5.1 [2024-11-08]
6+
7+
Remove unnecessary features from `multihash-codetable`.
8+
59
## 4.5.0 [2024-10-31]
610

711
- Update `cid` to v0.11 and `multihash` to v0.19.

shared/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## 4.5.1 [2024-11-08]
6+
7+
Remove unnecessary features from `multihash-codetable`.
8+
59
## 4.5.0 [2024-10-31]
610

711
- Update `cid` to v0.11 and `multihash` to v0.19.

0 commit comments

Comments
 (0)