Skip to content

Commit

Permalink
chore: release fvm 2.6.0 (#1845)
Browse files Browse the repository at this point in the history
  • Loading branch information
arajasek authored Aug 17, 2023
1 parent 497bdaf commit 8d0a12b
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

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

## [Unreleased]

## 2.6.0 (2023-08-16)

Breaking Changes:
- Perform randomness hashing in the kernel
- The FVM no longer supplies a DST and entropy to the client extern when requesting randomness
- It expects the client to return the "digest", from which the kernel then draws the randomness
- Clients integrating this change should:
- no longer expect the DST and entropy parameters for the `get_chain_randomness` and `get_beacon_randomness` externs
- omit the last step they currently perform when drawing randomness; that is, return the hashed digest after looking up the randomness source

## 2.5.0 (2023-06-28)

Breaking Changes:
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 = "2.5.0"
version = "2.6.0"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
Expand All @@ -19,7 +19,7 @@ derive_builder = "0.12.0"
num-derive = "0.3.3"
cid = { workspace = true, features = ["serde-codec"] }
multihash = { workspace = true }
fvm_shared = { version = "2.5.0", path = "../shared", features = ["crypto"] }
fvm_shared = { version = "2.6.0", path = "../shared", features = ["crypto"] }
fvm_ipld_hamt = { workspace = true }
fvm_ipld_amt = { workspace = true }
fvm_ipld_blockstore = { workspace = true }
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 = "2.4.0"
version = "2.5.0"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2018"
Expand All @@ -12,7 +12,7 @@ crate-type = ["lib"]

[dependencies]
cid = { workspace = true }
fvm_shared = { version = "2.5.0", path = "../shared" }
fvm_shared = { version = "2.6.0", path = "../shared" }
## num-traits; disabling default features makes it play nice with no_std.
num-traits = { version = "0.2.14", 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 = "2.5.0"
version = "2.6.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
Expand Down
6 changes: 3 additions & 3 deletions testing/conformance/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "fvm_conformance_tests"
description = "Filecoin Virtual Machine conformance tests"
version = "0.1.0"
version = "0.2.0"
authors = ["ChainSafe Systems <[email protected]>", "Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
exclude = ["/test-vectors"]
publish = false
repository = "https://github.com/filecoin-project/ref-fvm"

[dependencies]
fvm_shared = { version = "2.5.0", path = "../../shared" }
fvm_shared = { version = "2.6.0", path = "../../shared" }
fvm_ipld_hamt = { workspace = true }
fvm_ipld_amt = { workspace = true }
fvm_ipld_car = { workspace = true }
Expand Down Expand Up @@ -51,7 +51,7 @@ tar = { version = "0.4.38", default-features = false }
zstd = { version = "0.12.3", default-features = false }

[dependencies.fvm]
version = "2.5.0"
version = "2.6.0"
path = "../../fvm"
default-features = false
features = ["testing"]
Expand Down

0 comments on commit 8d0a12b

Please sign in to comment.