Skip to content

Commit

Permalink
chore: release v3.11 (#2048)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stebalien committed Sep 13, 2024
1 parent 2e3984f commit f330ca6
Show file tree
Hide file tree
Showing 27 changed files with 131 additions and 105 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.

12 changes: 12 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,24 @@ members = [
"tools/fvm-bench",
]

[workspace.package]
version = "3.11.0"
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/filecoin-project/ref-fvm"
authors = ["Protocol Labs", "Filecoin Core Devs"]

[workspace.dependencies]
cid = { version = "0.10.1", default-features = false }
multihash = { version = "0.18.1", default-features = false }
wasmtime = { version = "24.0.0", default-features = false, features = ["cranelift", "pooling-allocator", "parallel-compilation", "runtime"] }
wasmtime-environ = "24.0.0"

fvm = { path = "fvm", version = "~3.11.0", default-features = false }
fvm_shared = { path = "shared", version = "~3.11.0", default-features = false }
fvm_sdk = { path = "sdk", version = "~3.11.0" }
fvm_integration_tests = { path = "testing/integration", version = "~3.11.0" }

[profile.actor]
inherits = "release"
panic = "abort"
Expand Down
6 changes: 6 additions & 0 deletions fvm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Changes to the reference FVM implementation.

## [Unreleased]

## 3.11.0 [2024-09-12]

- Update to wasmtime 24.
- Switch from mach ports to unix signal handlers on macos.
- Update misc dependencies.

## 3.10.0 [2024-06-12]

- Update `filecoin-proofs-api` to v18
Expand Down
12 changes: 6 additions & 6 deletions fvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "fvm"
description = "Filecoin Virtual Machine reference implementation"
version = "3.10.0"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
repository = "https://github.com/filecoin-project/ref-fvm"
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
authors.workspace = true
keywords = ["filecoin", "web3", "wasm"]

[lib]
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.10.0", path = "../shared", features = ["crypto"] }
fvm_shared = { workspace = true, features = ["crypto"] }
fvm_ipld_hamt = { version = "0.9.0" }
fvm_ipld_amt = { version = "0.6.1" }
fvm_ipld_blockstore = { version = "0.2.0" }
Expand Down
6 changes: 6 additions & 0 deletions sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## 3.11.0 [2024-09-12]

- Update to wasmtime 24.
- Switch from mach ports to unix signal handlers on macos.
- Update misc dependencies.

## 3.3.0 [2023-06-28]

Breaking Changes:
Expand Down
12 changes: 6 additions & 6 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "fvm_sdk"
description = "Filecoin Virtual Machine actor development SDK"
version = "3.3.0"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2021"
repository = "https://github.com/filecoin-project/ref-fvm"
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
authors.workspace = true

[lib]
crate-type = ["lib"]

[dependencies]
cid = { workspace = true }
fvm_shared = { version = "3.6.0", path = "../shared" }
fvm_shared = { workspace = true }
## 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
6 changes: 6 additions & 0 deletions shared/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## 3.11.0 [2024-09-12]

- Update to wasmtime 24.
- Switch from mach ports to unix signal handlers on macos.
- Update misc dependencies.

## 3.10.0 [2024-06-12]

- Update `filecoin-proofs-api` to v18
Expand Down
8 changes: 4 additions & 4 deletions shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "fvm_shared"
description = "Filecoin Virtual Machine shared types and functions"
version = "3.10.0"
edition = "2021"
license = "MIT OR Apache-2.0"
version.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
authors = ["ChainSafe Systems <info@chainsafe.io>", "Protocol Labs", "Filecoin Core Devs"]
repository = "https://github.com/filecoin-project/ref-fvm"

[dependencies]
blake2b_simd = "1.0.1"
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 = { workspace = true, features = ["testing"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
num-traits = "0.2"
Expand Down
Loading

0 comments on commit f330ca6

Please sign in to comment.