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 fvm v4 alpha-3 #1899

Merged
merged 1 commit into from
Sep 27, 2023
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
154 changes: 77 additions & 77 deletions Cargo.lock

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions fvm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Changes to the reference FVM implementation.

## [Unreleased]

## 4.0.0-alpha.3 (2023-09-27)

- Remove support for v1 proofs.
- Make it possible to construct a GasDuration (and make it possible to refer to the GasDuration type).

## 4.0.0-alpha.2 (2023-09-21)

- Update to wasmtime 12.0.2 (bug fix release)
Expand Down
4 changes: 2 additions & 2 deletions fvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm"
description = "Filecoin Virtual Machine reference implementation"
version = "4.0.0-alpha.2"
version = "4.0.0-alpha.3"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand All @@ -17,7 +17,7 @@ thiserror = "1.0.40"
num-traits = "0.2"
cid = { workspace = true, features = ["serde-codec"] }
multihash = { workspace = true, features = ["sha2", "sha3", "ripemd"] }
fvm_shared = { version = "4.0.0-alpha.2", path = "../shared", features = ["crypto"] }
fvm_shared = { version = "4.0.0-alpha.3", path = "../shared", features = ["crypto"] }
fvm_ipld_hamt = { version = "0.8.0", path = "../ipld/hamt" }
fvm_ipld_amt = { version = "0.6.1", path = "../ipld/amt" }
fvm_ipld_blockstore = { version = "0.2.0", path = "../ipld/blockstore" }
Expand Down
4 changes: 4 additions & 0 deletions sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## 4.0.0-alpha.3 (2023-09-27)

- Remove support for v1 proofs.

## 4.0.0-alpha.2 (2023-09-21)

- Implement FIP-0071, FIP-0072, FIP-0073, FIP-0075
Expand Down
4 changes: 2 additions & 2 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_sdk"
description = "Filecoin Virtual Machine actor development SDK"
version = "4.0.0-alpha.2"
version = "4.0.0-alpha.3"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand All @@ -12,7 +12,7 @@ crate-type = ["lib"]

[dependencies]
cid = { workspace = true }
fvm_shared = { version = "4.0.0-alpha.2", path = "../shared" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../shared" }
## num-traits; disabling default features makes it play nice with no_std.
num-traits = { version = "0.2.15", default-features = false }
lazy_static = { version = "1.4.0" }
Expand Down
4 changes: 4 additions & 0 deletions shared/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## 4.0.0-alpha.3 (2023-09-27)

- Remove support for v1 proofs.

## 4.0.0-alpha.2 (2023-09-21)

- Implement FIP-0071, FIP-0072, FIP-0073, FIP-0075
Expand Down
2 changes: 1 addition & 1 deletion shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "fvm_shared"
description = "Filecoin Virtual Machine shared types and functions"
version = "4.0.0-alpha.2"
version = "4.0.0-alpha.3"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
Expand Down
2 changes: 1 addition & 1 deletion testing/calibration/shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = ["Protocol Labs", "Filecoin Core Devs"]
repository = "https://github.com/filecoin-project/ref-fvm"

[dependencies]
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../shared", features = ["testing"] }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../shared", features = ["testing"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
num-traits = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions testing/conformance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
repository = "https://github.com/filecoin-project/ref-fvm"

[dependencies]
fvm_shared = { version = "4.0.0-alpha.2", path = "../../shared" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../shared" }
fvm_ipld_car = { version = "0.7.1", path = "../../ipld/car" }
fvm_ipld_blockstore = { version = "0.2.0", path = "../../ipld/blockstore" }
fvm_ipld_encoding = { version = "0.4.0", path = "../../ipld/encoding" }
Expand Down Expand Up @@ -39,7 +39,7 @@ tar = { version = "0.4.38", default-features = false }
zstd = { version = "0.12.3", default-features = false }

[dependencies.fvm]
version = "4.0.0-alpha.2"
version = "4.0.0-alpha.3"
path = "../../fvm"
default-features = false
features = ["testing"]
Expand Down
6 changes: 3 additions & 3 deletions testing/integration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "fvm_integration_tests"
description = "Filecoin Virtual Machine integration tests framework"
version = "4.0.0-alpha.2"
version = "4.0.0-alpha.3"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs", "Polyphene"]
repository = "https://github.com/filecoin-project/ref-fvm"

[dependencies]
fvm = { version = "4.0.0-alpha.2", path = "../../fvm", default-features = false, features = ["testing"] }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../shared", features = ["testing"] }
fvm = { version = "4.0.0-alpha.3", path = "../../fvm", default-features = false, features = ["testing"] }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../shared", features = ["testing"] }
fvm_ipld_car = { version = "0.7.1", path = "../../ipld/car" }
fvm_ipld_blockstore = { version = "0.2.0", path = "../../ipld/blockstore" }
fvm_ipld_encoding = { version = "0.4.0", path = "../../ipld/encoding" }
Expand Down
4 changes: 2 additions & 2 deletions testing/test_actors/actors/fil-address-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_ipld_encoding = { version = "0.4.0", path = "../../../../ipld/encoding" }
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }

[lib]
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build
4 changes: 2 additions & 2 deletions testing/test_actors/actors/fil-create-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }
actors_v12_runtime = { package = "fil_actors_runtime", git = "https://github.com/filecoin-project/builtin-actors", branch = "fvm-next" }

[lib]
Expand Down
4 changes: 2 additions & 2 deletions testing/test_actors/actors/fil-events-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_ipld_encoding = { version = "0.4.0", path = "../../../../ipld/encoding" }
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }
serde = {version = "1.0.164", features = ["derive"] }
serde_tuple = "0.5.0"

Expand Down
4 changes: 2 additions & 2 deletions testing/test_actors/actors/fil-exit-data-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }
fvm_ipld_encoding = { version = "0.4.0", path = "../../../../ipld/encoding" }

[lib]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }
fvm_ipld_encoding = { version = "0.4.0", path = "../../../../ipld/encoding" }
fvm_gas_calibration_shared = { path = "../../../calibration/shared" }

Expand Down
4 changes: 2 additions & 2 deletions testing/test_actors/actors/fil-gaslimit-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_ipld_encoding = { version = "0.4.0", path = "../../../../ipld/encoding" }
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }
serde = {version = "1.0.164", features = ["derive"] }
serde_tuple = "0.5.0"
log = "0.4.19"
Expand Down
4 changes: 2 additions & 2 deletions testing/test_actors/actors/fil-hello-world-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }

[lib]
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }
fvm_ipld_encoding = { version = "0.4.0", path = "../../../../ipld/encoding" }
fvm_ipld_blockstore = { version = "0.2.0", path = "../../../../ipld/blockstore" }

Expand Down
4 changes: 2 additions & 2 deletions testing/test_actors/actors/fil-ipld-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_ipld_encoding = { version = "0.4.0", path = "../../../../ipld/encoding" }
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }

[target.'cfg(coverage)'.dependencies]
minicov = "0.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }

[lib]
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build
4 changes: 2 additions & 2 deletions testing/test_actors/actors/fil-oom-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }

[lib]
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build
4 changes: 2 additions & 2 deletions testing/test_actors/actors/fil-readonly-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }
fvm_ipld_encoding = { version = "0.4.0", path = "../../../../ipld/encoding" }
cid = { workspace = true }

Expand Down
4 changes: 2 additions & 2 deletions testing/test_actors/actors/fil-sself-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }
fvm_ipld_encoding = { version = "0.4.0", path = "../../../../ipld/encoding" }
cid = { workspace = true }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ edition = "2021"
publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }

[lib]
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build
4 changes: 2 additions & 2 deletions testing/test_actors/actors/fil-syscall-actor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publish = false

[target.'cfg(target_arch = "wasm32")'.dependencies]
fvm_ipld_encoding = { version = "0.4.0", path = "../../../../ipld/encoding" }
fvm_sdk = { version = "4.0.0-alpha.2", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.2", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }
minicov = {version = "0.3", optional = true}
actors_v12_runtime = { package = "fil_actors_runtime", git = "https://github.com/filecoin-project/builtin-actors", branch = "fvm-next" }
multihash = { workspace = true, features = ["sha3", "sha2", "ripemd"] }
Expand Down