Skip to content

Commit c6072f1

Browse files
committed
Releases for breaking change to syscall ABI.
1 parent 10da080 commit c6072f1

File tree

7 files changed

+22
-7
lines changed

7 files changed

+22
-7
lines changed

fvm/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22

33
Changes to the reference FVM implementation.
44

5-
## [Unreleased]
5+
## 0.7.0 [UNRELEASED]
6+
7+
This release contains exactly one (breaking) change.
8+
9+
BREAKING: Updates the FVM to the latest syscall struct alignment
10+
(https://github.com/filecoin-project/fvm-specs/issues/63).
611

712
## 0.6.0 [2022-04-13]
813

fvm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ahash = "0.7"
2020
num-derive = "0.3.3"
2121
cid = { version = "0.8.2", default-features = false, features = ["serde-codec"] }
2222
multihash = { version = "0.16.1", default-features = false }
23-
fvm_shared = { version = "0.5.1", path = "../shared", features = ["crypto"] }
23+
fvm_shared = { version = "0.6.0", path = "../shared", features = ["crypto"] }
2424
fvm_ipld_hamt = { version = "0.5.0", path = "../ipld/hamt"}
2525
fvm_ipld_amt = { version = "0.4.0", path = "../ipld/amt"}
2626
fvm_ipld_blockstore = { version = "0.1.0", path = "../ipld/blockstore" }

sdk/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased]
44

5+
## 0.6.0 [2022-04-14]
6+
7+
BREAKING: Upgrades to fvm_shared 0.6.0, and the new syscall struct alignment.
8+
https://github.com/filecoin-project/fvm-specs/issues/63
9+
510
## 0.5.0 [2022-04-11]
611

712
Upgrades the SDK to fvm_shared 0.5.0. This release includes a significant breaking change to exit codes.

sdk/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fvm_sdk"
33
description = "Filecoin Virtual Machine actor development SDK"
4-
version = "0.5.0"
4+
version = "0.6.0"
55
license = "MIT OR Apache-2.0"
66
authors = ["Protocol Labs", "Filecoin Core Devs"]
77
edition = "2018"
@@ -12,7 +12,7 @@ crate-type = ["lib"]
1212

1313
[dependencies]
1414
cid = { version = "0.8.2", default-features = false }
15-
fvm_shared = { version = "0.5.1", path = "../shared" }
15+
fvm_shared = { version = "0.6.0", path = "../shared" }
1616
## num-traits; disabling default features makes it play nice with no_std.
1717
num-traits = { version = "0.2.14", default-features = false }
1818
lazy_static = { version = "1.4.0", optional = true }

shared/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22

3-
## [Unreleased]
3+
## 0.6.0 [2022-04-14]
4+
5+
BREAKING: Switch syscall struct alignment: https://github.com/filecoin-project/fvm-specs/issues/63
6+
7+
Actors built against this new version of fvm_shared will be incompatible with prior FVM versions,
8+
and vice-versa.
49

510
## 0.5.1 [2022-04-11]
611

shared/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fvm_shared"
33
description = "Filecoin Virtual Machine shared types and functions"
4-
version = "0.5.1"
4+
version = "0.6.0"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]

testing/conformance/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repository = "https://github.com/filecoin-project/ref-fvm"
1010

1111
[dependencies]
1212
fvm = { version = "0.6.0", path = "../../fvm", default-features = false }
13-
fvm_shared = { version = "0.5.1", path = "../../shared" }
13+
fvm_shared = { version = "0.6.0", path = "../../shared" }
1414
fvm_ipld_hamt = { version = "0.5.0", path = "../../ipld/hamt"}
1515
fvm_ipld_amt = { version = "0.4.0", path = "../../ipld/amt"}
1616
fvm_ipld_car = { version = "0.4.0", path = "../../ipld/car" }

0 commit comments

Comments
 (0)