Skip to content

Commit

Permalink
chore: release v4 alpha 4
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Sep 28, 2023
1 parent 7b09f2a commit 4b25d55
Show file tree
Hide file tree
Showing 25 changed files with 94 additions and 82 deletions.
82 changes: 41 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

## [Unreleased]

## 4.0.0-alpha.4 (2023-09-28)

- Add back some proof types that were mistakenly removed, and fix some of the constants.

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

- Remove support for v1 proofs.
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.3"
version = "4.0.0-alpha.4"
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.3", path = "../shared", features = ["crypto"] }
fvm_shared = { version = "4.0.0-alpha.4", path = "../shared", features = ["crypto"] }
fvm_ipld_hamt = { version = "0.8.0", path = "../ipld/hamt" }
fvm_ipld_amt = { version = "0.6.2", 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.4 (2023-09-28)

- Add back some proof types that were mistakenly removed, and fix some of the constants.

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

- Remove support for v1 proofs.
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.3"
version = "4.0.0-alpha.4"
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.3", path = "../shared" }
fvm_shared = { version = "4.0.0-alpha.4", 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.4 (2023-09-28)

- Add back some proof types that were mistakenly removed, and fix some of the constants.

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

- Remove support for v1 proofs.
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.3"
version = "4.0.0-alpha.4"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <info@chainsafe.io>", "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.3", path = "../../../shared", features = ["testing"] }
fvm_shared = { version = "4.0.0-alpha.4", 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.3", path = "../../shared" }
fvm_shared = { version = "4.0.0-alpha.4", 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.3"
version = "4.0.0-alpha.4"
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.3"
version = "4.0.0-alpha.4"
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.3", path = "../../fvm", default-features = false, features = ["testing"] }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../shared", features = ["testing"] }
fvm = { version = "4.0.0-alpha.4", path = "../../fvm", default-features = false, features = ["testing"] }
fvm_shared = { version = "4.0.0-alpha.4", 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.3", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.3", path = "../../../../shared" }
fvm_sdk = { version = "4.0.0-alpha.4", path = "../../../../sdk" }
fvm_shared = { version = "4.0.0-alpha.4", path = "../../../../shared" }

[lib]
crate-type = ["cdylib"] ## cdylib is necessary for Wasm build
Loading

0 comments on commit 4b25d55

Please sign in to comment.