Skip to content

Commit 0f9fbaf

Browse files
authored
chore: release fvm v3.9 (#1982)
1 parent d932cc9 commit 0f9fbaf

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

Cargo.lock

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

fvm/CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ Changes to the reference FVM implementation.
44

55
## [Unreleased]
66

7-
## 3.8.0 (2023-09-06)
7+
## 3.9.0 [2024-01-31]
8+
9+
- BREAKING: Change `ExecutionEvent::InvokeActor` from only including the actor's code CID to including the actor's ID and state-object (including the code CID, current balance, current state root, delegated address, and nonce). The new API matches the API in FVMv4.
10+
11+
## 3.8.0 [2023-09-06]
812

913
- Upgrade wasmtime to v12. Unlike prior wasmtime upgrades, this shouldn't be a breaking change as it now mangles its symbols.
1014
- BREAKING: Upgrade the proofs API to v16.

fvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fvm"
33
description = "Filecoin Virtual Machine reference implementation"
4-
version = "3.8.0"
4+
version = "3.9.0"
55
license = "MIT OR Apache-2.0"
66
authors = ["Protocol Labs", "Filecoin Core Devs"]
77
edition = "2021"

testing/conformance/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ tar = { version = "0.4.38", default-features = false }
3939
zstd = { version = "0.12.3", default-features = false }
4040

4141
[dependencies.fvm]
42-
version = "3.8.0"
42+
version = "3.9.0"
4343
path = "../../fvm"
4444
default-features = false
4545
features = ["testing"]

testing/integration/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "fvm_integration_tests"
33
description = "Filecoin Virtual Machine integration tests framework"
4-
version = "3.2.0"
4+
version = "3.3.0"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
authors = ["Protocol Labs", "Filecoin Core Devs", "Polyphene"]
88
repository = "https://github.com/filecoin-project/ref-fvm"
99

1010
[dependencies]
11-
fvm = { version = "3.8.0", path = "../../fvm", default-features = false, features = ["testing"] }
11+
fvm = { version = "3.9.0", path = "../../fvm", default-features = false, features = ["testing"] }
1212
fvm_shared = { version = "3.6.0", path = "../../shared", features = ["testing"] }
1313
fvm_ipld_car = { version = "0.7.1" }
1414
fvm_ipld_blockstore = { version = "0.2.0" }

0 commit comments

Comments
 (0)