Skip to content

Commit 4cb7342

Browse files
authored
chore: release v4.4.3 (#2064)
This release brings in wasmtime 25.0.2. We're doing this as a _patch_ release because 4.4 brought in wasmtime 24 which introduced a significant regression in wasm compile time (and there shouldn't be anything breaking in this release either).
1 parent 480a6ba commit 4cb7342

File tree

5 files changed

+72
-55
lines changed

5 files changed

+72
-55
lines changed

Cargo.lock

+49-49
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ members = [
1919
]
2020

2121
[workspace.package]
22-
version = "4.4.2"
22+
version = "4.4.3"
2323
license = "MIT OR Apache-2.0"
2424
edition = "2021"
2525
repository = "https://github.com/filecoin-project/ref-fvm"
@@ -72,18 +72,20 @@ quickcheck_macros = "1.0.0"
7272
minstant = "0.1.3"
7373
coverage-helper = "0.2.0"
7474

75-
# workspace
76-
fvm = { path = "fvm", version = "~4.4.2", default-features = false }
77-
fvm_shared = { path = "shared", version = "~4.4.2", default-features = false }
78-
fvm_sdk = { path = "sdk", version = "~4.4.2" }
75+
# workspace (FVM)
76+
fvm = { path = "fvm", version = "~4.4.3", default-features = false }
77+
fvm_shared = { path = "shared", version = "~4.4.3", default-features = false }
78+
fvm_sdk = { path = "sdk", version = "~4.4.3" }
79+
fvm_integration_tests = { path = "testing/integration", version = "~4.4.3" }
80+
81+
# workspace (other)
7982
fvm_ipld_amt = { path = "ipld/amt", version = "0.6.2" }
8083
fvm_ipld_hamt = { path = "ipld/hamt", version = "0.9.0" }
8184
fvm_ipld_kamt = { path = "ipld/kamt", version = "0.3.0" }
8285
fvm_ipld_car = { path = "ipld/car", version = "0.7.1" }
8386
fvm_ipld_blockstore = { path = "ipld/blockstore", version = "0.2.1" }
8487
fvm_ipld_bitfield = { path = "ipld/bitfield", version = "0.6.0" }
8588
fvm_ipld_encoding = { path = "ipld/encoding", version = "0.4.0" }
86-
fvm_integration_tests = { path = "testing/integration", version = "~4.4.1" }
8789
fvm_gas_calibration_shared = { path = "testing/calibration/shared" }
8890
fvm_test_actors = { path = "testing/test_actors" }
8991

fvm/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Changes to the reference FVM implementation.
44

55
## [Unreleased]
66

7+
## 4.4.3 [2024-10-21]
8+
9+
- Update wasmtime to 25.0.2.
10+
- Fixes long wasm compile times with wasmtime 24.
11+
712
## 4.4.2 [2024-10-09]
813

914
- Update wasmtime to 24.0.1.

sdk/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased]
44

5+
## 4.4.3 [2024-10-21]
6+
7+
- Update wasmtime to 25.0.2.
8+
- Fixes long wasm compile times with wasmtime 24.
9+
510
## 4.4.2 [2024-10-09]
611

712
- Update wasmtime to 24.0.1.

shared/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
## [Unreleased]
44

5+
## 4.4.3 [2024-10-21]
6+
7+
- Update wasmtime to 25.0.2.
8+
- Fixes long wasm compile times with wasmtime 24.
9+
510
## 4.4.2 [2024-10-09]
611

712
- Update wasmtime to 24.0.1.

0 commit comments

Comments
 (0)