Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v4.4.4 #2078

Merged
merged 3 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 49 additions & 49 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ members = [
]

[workspace.package]
version = "4.4.3"
version = "4.4.4"
license = "MIT OR Apache-2.0"
edition = "2021"
repository = "https://github.com/filecoin-project/ref-fvm"
Expand Down Expand Up @@ -73,10 +73,10 @@ minstant = "0.1.3"
coverage-helper = "0.2.0"

# workspace (FVM)
fvm = { path = "fvm", version = "~4.4.3", default-features = false }
fvm_shared = { path = "shared", version = "~4.4.3", default-features = false }
fvm_sdk = { path = "sdk", version = "~4.4.3" }
fvm_integration_tests = { path = "testing/integration", version = "~4.4.3" }
fvm = { path = "fvm", version = "~4.4.4", default-features = false }
fvm_shared = { path = "shared", version = "~4.4.4", default-features = false }
fvm_sdk = { path = "sdk", version = "~4.4.4" }
fvm_integration_tests = { path = "testing/integration", version = "~4.4.4" }

# workspace (other)
fvm_ipld_amt = { path = "ipld/amt", version = "0.6.2" }
Expand Down
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.4.4 [2024-11-18]

- feat: add `nv25-dev` feature flag [#2076](https://github.com/filecoin-project/ref-fvm/pull/2076)

## 4.4.3 [2024-10-21]

- Update wasmtime to 25.0.2.
Expand Down
1 change: 1 addition & 0 deletions fvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,4 @@ gas_calibration = []
# The current implementation keeps it by default for backward compatibility reason.
# See <https://github.com/filecoin-project/ref-fvm/issues/2001>
verify-signature = []
nv25-dev = []
2 changes: 2 additions & 0 deletions fvm/src/gas/price_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1004,6 +1004,8 @@ pub fn price_list_by_network_version(network_version: NetworkVersion) -> &'stati
NetworkVersion::V21 | NetworkVersion::V22 | NetworkVersion::V23 | NetworkVersion::V24 => {
&WATERMELON_PRICES
}
#[cfg(feature = "nv25-dev")]
NetworkVersion::V25 => &WATERMELON_PRICES,
_ => panic!("network version {nv} not supported", nv = network_version),
}
}
Expand Down
5 changes: 5 additions & 0 deletions fvm/src/machine/default.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,14 @@ where
/// * `blockstore`: The underlying [blockstore][`Blockstore`] for reading/writing state.
/// * `externs`: Client-provided ["external"][`Externs`] methods for accessing chain state.
pub fn new(context: &MachineContext, blockstore: B, externs: E) -> anyhow::Result<Self> {
#[cfg(not(feature = "nv25-dev"))]
const SUPPORTED_VERSIONS: RangeInclusive<NetworkVersion> =
NetworkVersion::V21..=NetworkVersion::V24;

#[cfg(feature = "nv25-dev")]
const SUPPORTED_VERSIONS: RangeInclusive<NetworkVersion> =
NetworkVersion::V21..=NetworkVersion::V25;

debug!(
"initializing a new machine, epoch={}, base_fee={}, nv={:?}, root={}",
context.epoch, &context.base_fee, context.network_version, context.initial_state_root
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.4.4 [2024-11-18]

- feat: add `nv25-dev` feature flag [#2076](https://github.com/filecoin-project/ref-fvm/pull/2076)

## 4.4.3 [2024-10-21]

- Update wasmtime to 25.0.2.
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.4.4 [2024-11-18]

- feat: add `nv25-dev` feature flag [#2076](https://github.com/filecoin-project/ref-fvm/pull/2076)

## 4.4.3 [2024-10-21]

- Update wasmtime to 25.0.2.
Expand Down
4 changes: 3 additions & 1 deletion shared/src/version/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ impl NetworkVersion {
pub const V22: Self = Self(22);
/// Waffle (builtin-actors v14)
pub const V23: Self = Self(23);
/// TBD (builtin-actors v15)
/// TukTuk (builtin-actors v15)
pub const V24: Self = Self(24);
/// TBD (builtin-actors v16)
pub const V25: Self = Self(25);

pub const MAX: Self = Self(u32::MAX);

Expand Down
Loading