From 6d1e692d533e850c1035cd8e6d2b5157f98d876e Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Tue, 8 Sep 2026 12:48:25 +0200 Subject: [PATCH 1/2] bump to 7.4.1 --- Cargo.standalone.toml | 2 +- Cargo.toml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.standalone.toml b/Cargo.standalone.toml index 0a47973..b117ac9 100644 --- a/Cargo.standalone.toml +++ b/Cargo.standalone.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-napi" -version = "0.704.0" +version = "0.704.1" description = "NAPI library for Wasmer WebAssembly runtime" edition = "2024" license = "MIT" diff --git a/Cargo.toml b/Cargo.toml index 3d6b7f5..583271b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-napi" -version = "0.704.0" +version = "0.704.1" description = "NAPI library for Wasmer WebAssembly runtime" edition = "2024" license = "MIT" @@ -36,16 +36,16 @@ cli = [ anyhow = "1" # This manifest is consumed as `wasmer/lib/napi`, so Wasmer dependencies must # stay relative to that checkout. Standalone builds use Cargo.standalone.toml. -wasmer = { version = "=7.4.0", path = "../api", default-features = false } +wasmer = { version = "=7.4.1", path = "../api", default-features = false } # This dependencies are ONLY needed for testing napi in Wasm locally -wasmer-cache = { version = "=7.4.0", path = "../cache", optional = true } -wasmer-c-api-imports = { version = "=7.4.0", path = "../c-api-imports", optional = true, default-features = false } -wasmer-types = { version = "=7.4.0", path = "../types", optional = true } +wasmer-cache = { version = "=7.4.1", path = "../cache", optional = true } +wasmer-c-api-imports = { version = "=7.4.1", path = "../c-api-imports", optional = true, default-features = false } +wasmer-types = { version = "=7.4.1", path = "../types", optional = true } # Non-optional: the guest callback trampoline re-raises guest WASI process # exits (`WasiError::Exit`) through the N-API import layers, so `mod guest` # (always compiled) needs the WASIX error type in every build. -virtual-fs = { version = "=0.704.0", path = "../virtual-fs", optional = true } +virtual-fs = { version = "=0.704.1", path = "../virtual-fs", optional = true } tokio = { version = "1", features = ["rt-multi-thread"], optional = true } enum-iterator = "2.3.0" offset-allocator = "0.2.0" @@ -54,15 +54,15 @@ offset-allocator = "0.2.0" js-sys = { version = "0.3", optional = true } wasm-bindgen = { version = "0.2.120", optional = true } wasm-bindgen-futures = { version = "0.4", optional = true } -wasmer-wasix = { version = "=0.704.0", path = "../wasix", default-features = false, features = [ +wasmer-wasix = { version = "=0.704.1", path = "../wasix", default-features = false, features = [ "js", ] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -wasmer = { version = "=7.4.0", path = "../api", default-features = false, features = [ +wasmer = { version = "=7.4.1", path = "../api", default-features = false, features = [ "sys-default", ] } -wasmer-wasix = { version = "=0.704.0", path = "../wasix", default-features = false, features = [ +wasmer-wasix = { version = "=0.704.1", path = "../wasix", default-features = false, features = [ "sys", ] } From 8a750484fadb5af303916a34d5ba864d2a38ddb6 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Tue, 15 Sep 2026 20:18:04 +0200 Subject: [PATCH 2/2] bump to 7.4.1 --- Cargo.standalone.toml | 2 +- Cargo.toml | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.standalone.toml b/Cargo.standalone.toml index b117ac9..d5649bb 100644 --- a/Cargo.standalone.toml +++ b/Cargo.standalone.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-napi" -version = "0.704.1" +version = "0.704.2" description = "NAPI library for Wasmer WebAssembly runtime" edition = "2024" license = "MIT" diff --git a/Cargo.toml b/Cargo.toml index 583271b..ef9983d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-napi" -version = "0.704.1" +version = "0.704.2" description = "NAPI library for Wasmer WebAssembly runtime" edition = "2024" license = "MIT" @@ -36,16 +36,16 @@ cli = [ anyhow = "1" # This manifest is consumed as `wasmer/lib/napi`, so Wasmer dependencies must # stay relative to that checkout. Standalone builds use Cargo.standalone.toml. -wasmer = { version = "=7.4.1", path = "../api", default-features = false } +wasmer = { version = "=7.4.2", path = "../api", default-features = false } # This dependencies are ONLY needed for testing napi in Wasm locally -wasmer-cache = { version = "=7.4.1", path = "../cache", optional = true } -wasmer-c-api-imports = { version = "=7.4.1", path = "../c-api-imports", optional = true, default-features = false } -wasmer-types = { version = "=7.4.1", path = "../types", optional = true } +wasmer-cache = { version = "=7.4.2", path = "../cache", optional = true } +wasmer-c-api-imports = { version = "=7.4.2", path = "../c-api-imports", optional = true, default-features = false } +wasmer-types = { version = "=7.4.2", path = "../types", optional = true } # Non-optional: the guest callback trampoline re-raises guest WASI process # exits (`WasiError::Exit`) through the N-API import layers, so `mod guest` # (always compiled) needs the WASIX error type in every build. -virtual-fs = { version = "=0.704.1", path = "../virtual-fs", optional = true } +virtual-fs = { version = "=0.704.2", path = "../virtual-fs", optional = true } tokio = { version = "1", features = ["rt-multi-thread"], optional = true } enum-iterator = "2.3.0" offset-allocator = "0.2.0" @@ -54,15 +54,15 @@ offset-allocator = "0.2.0" js-sys = { version = "0.3", optional = true } wasm-bindgen = { version = "0.2.120", optional = true } wasm-bindgen-futures = { version = "0.4", optional = true } -wasmer-wasix = { version = "=0.704.1", path = "../wasix", default-features = false, features = [ +wasmer-wasix = { version = "=0.704.2", path = "../wasix", default-features = false, features = [ "js", ] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -wasmer = { version = "=7.4.1", path = "../api", default-features = false, features = [ +wasmer = { version = "=7.4.2", path = "../api", default-features = false, features = [ "sys-default", ] } -wasmer-wasix = { version = "=0.704.1", path = "../wasix", default-features = false, features = [ +wasmer-wasix = { version = "=0.704.2", path = "../wasix", default-features = false, features = [ "sys", ] }