Skip to content

Commit

Permalink
chore: release v4.0.0-alpha.1 (#1888)
Browse files Browse the repository at this point in the history
⚠️ BREAKING ⚠️

Commits after this one will contain nv21 breaking network changes.
  • Loading branch information
Stebalien authored Sep 20, 2023
1 parent d61545d commit 5603bcf
Show file tree
Hide file tree
Showing 23 changed files with 93 additions and 93 deletions.
102 changes: 51 additions & 51 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Reference Filecoin VM implementation (v3; dev)
# Reference Filecoin VM implementation (v4; dev)

[![Continuous integration](https://github.com/filecoin-project/ref-fvm/actions/workflows/ci.yml/badge.svg)](https://github.com/filecoin-project/ref-fvm/actions/workflows/ci.yml)

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 = "3.8.0"
version = "4.0.0-alpha.1"
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 = "3.6.0", path = "../shared", features = ["crypto"] }
fvm_shared = { version = "4.0.0-alpha.1", 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: 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 = "3.3.0"
version = "4.0.0-alpha.1"
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 = "3.6.0", path = "../shared" }
fvm_shared = { version = "4.0.0-alpha.1", 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
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 = "3.6.0"
version = "4.0.0-alpha.1"
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 = "3.6.0", path = "../../../shared", features = ["testing"] }
fvm_shared = { version = "4.0.0-alpha.1", 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 = "3.6.0", path = "../../shared" }
fvm_shared = { version = "4.0.0-alpha.1", 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 = "3.8.0"
version = "4.0.0-alpha.1"
path = "../../fvm"
default-features = false
features = ["testing"]
Expand Down
Loading

0 comments on commit 5603bcf

Please sign in to comment.