From 25a9c9842d11d51b3c50642aa616b623afc610f1 Mon Sep 17 00:00:00 2001 From: "M.Amin Rayej" Date: Tue, 29 Oct 2024 17:38:07 +0330 Subject: [PATCH 1/3] Update CHANGELOG --- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2de2bc94fa2..bbc1bfbb3f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,38 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C ## **Unreleased** +## 5.0.0 - 29/10/2024 + +## Added + + - [#5185](https://github.com/wasmerio/wasmer/pull/5185) Add execution benchmarks + - [#5174](https://github.com/wasmerio/wasmer/pull/5174) chore(wasix): Additional logging in wasix HTTP client + - [#5152](https://github.com/wasmerio/wasmer/pull/5152) Experimental: add support for loongarch64 on LLVM + +## Changed + + - [#5188](https://github.com/wasmerio/wasmer/pull/5188) feat: Rename `wasmer-api` to `wasmer-backend-api` + - [#5186](https://github.com/wasmerio/wasmer/pull/5186) Remove support for emscripten + - [#5181](https://github.com/wasmerio/wasmer/pull/5181) Sunset `wasmer-registry`, `wasmer-interface` and update misc dependencies + - [#5165](https://github.com/wasmerio/wasmer/pull/5165) 5.0.0-rc.1 post release + - [#5151](https://github.com/wasmerio/wasmer/pull/5151) Remove negative variant of exit code + - [#5153](https://github.com/wasmerio/wasmer/pull/5153) Terminate entire wasix process when a worker thread fails or calls exit + - [#5172](https://github.com/wasmerio/wasmer/pull/5172) chore(backend-api): Update GraphQL schema + - [#5176](https://github.com/wasmerio/wasmer/pull/5176) Remove unused edge-util dependency + - [#5171](https://github.com/wasmerio/wasmer/pull/5171) Refactor webc usage + - [#5144](https://github.com/wasmerio/wasmer/pull/5144) Implement app-deployment related CLI commands + - [#5163](https://github.com/wasmerio/wasmer/pull/5163) Correct the example of the README in the WASIX crate + +## Fixed + + - [#5184](https://github.com/wasmerio/wasmer/pull/5184) fix(api/wamr): Build `wamr` on `iOS` + - [#5179](https://github.com/wasmerio/wasmer/pull/5179) Fix build CI + - [#5178](https://github.com/wasmerio/wasmer/pull/5178) Fix usage of exit code + - [#5162](https://github.com/wasmerio/wasmer/pull/5162) Fix append-ness of new fd affecting old fds + - [#5160](https://github.com/wasmerio/wasmer/pull/5160) Fix fd with append flag can't seek correctly + + + ## 5.0.0-rc.1 - 21/10/2024 This is a release candidate as we are preparing for the final release of 5.0 From fe1640d60fa6670e90c3ca75f04918311edbd510 Mon Sep 17 00:00:00 2001 From: "M.Amin Rayej" Date: Tue, 29 Oct 2024 17:38:07 +0330 Subject: [PATCH 2/3] Release 5.0.0 --- Cargo.toml | 24 +++++++++---------- lib/api/Cargo.toml | 22 ++++++++--------- .../macro-wasmer-universal-test/Cargo.toml | 2 +- lib/c-api/Cargo.toml | 14 +++++------ .../wasmer-capi-examples-runner/Cargo.toml | 2 +- .../tests/wasmer-c-api-test-runner/Cargo.toml | 2 +- lib/cache/Cargo.toml | 6 ++--- lib/cli-compiler/Cargo.toml | 12 +++++----- lib/cli/Cargo.toml | 18 +++++++------- lib/compiler-cranelift/Cargo.toml | 4 ++-- lib/compiler-llvm/Cargo.toml | 6 ++--- lib/compiler-singlepass/Cargo.toml | 4 ++-- lib/compiler/Cargo.toml | 6 ++--- lib/journal/Cargo.toml | 2 +- lib/middlewares/Cargo.toml | 8 +++---- lib/object/Cargo.toml | 2 +- lib/swift/Cargo.toml | 2 +- lib/sys-utils/Cargo.toml | 8 +++---- lib/vm/Cargo.toml | 2 +- lib/wai-bindgen-wasmer/Cargo.toml | 2 +- lib/wasi-types/Cargo.toml | 6 ++--- lib/wasix/Cargo.toml | 8 +++---- scripts/update-version.py | 4 ++-- scripts/windows-installer/wasmer.iss | 2 +- tests/integration/cli/Cargo.toml | 2 +- tests/integration/ios/Cargo.toml | 2 +- tests/lib/wast/Cargo.toml | 4 ++-- tests/wasi-wast/Cargo.toml | 2 +- tests/wasmer-argus/Cargo.toml | 2 +- 29 files changed, 90 insertions(+), 90 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2496a6b735e..44503ebbc23 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,19 +12,19 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer = { version = "=5.0.0-rc.1", path = "lib/api", default-features = false } -wasmer-compiler = { version = "=5.0.0-rc.1", path = "lib/compiler", features = [ +wasmer = { version = "=5.0.0", path = "lib/api", default-features = false } +wasmer-compiler = { version = "=5.0.0", path = "lib/compiler", features = [ "compiler", ], optional = true } -wasmer-compiler-cranelift = { version = "=5.0.0-rc.1", path = "lib/compiler-cranelift", optional = true } -wasmer-compiler-singlepass = { version = "=5.0.0-rc.1", path = "lib/compiler-singlepass", optional = true } -wasmer-compiler-llvm = { version = "=5.0.0-rc.1", path = "lib/compiler-llvm", optional = true } +wasmer-compiler-cranelift = { version = "=5.0.0", path = "lib/compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "=5.0.0", path = "lib/compiler-singlepass", optional = true } +wasmer-compiler-llvm = { version = "=5.0.0", path = "lib/compiler-llvm", optional = true } wasmer-wasix = { path = "lib/wasix", optional = true } -wasmer-wast = { version = "=5.0.0-rc.1", path = "tests/lib/wast", optional = true } -wasi-test-generator = { version = "=5.0.0-rc.1", path = "tests/wasi-wast", optional = true } -wasmer-cache = { version = "=5.0.0-rc.1", path = "lib/cache", optional = true } -wasmer-types = { version = "=5.0.0-rc.1", path = "lib/types" } -wasmer-middlewares = { version = "=5.0.0-rc.1", path = "lib/middlewares", optional = true } +wasmer-wast = { version = "=5.0.0", path = "tests/lib/wast", optional = true } +wasi-test-generator = { version = "=5.0.0", path = "tests/wasi-wast", optional = true } +wasmer-cache = { version = "=5.0.0", path = "lib/cache", optional = true } +wasmer-types = { version = "=5.0.0", path = "lib/types" } +wasmer-middlewares = { version = "=5.0.0", path = "lib/middlewares", optional = true } # Third party dependencies cfg-if = "1.0" @@ -84,7 +84,7 @@ homepage = "https://wasmer.io/" license = "MIT" repository = "https://github.com/wasmerio/wasmer" rust-version = "1.81" -version = "5.0.0-rc.1" +version = "5.0.0" [workspace.dependencies] # Repo-local crates @@ -130,7 +130,7 @@ glob = "0.3" rustc_version = "0.4" [dev-dependencies] -wasmer = { version = "=5.0.0-rc.1", path = "lib/api", features = [ +wasmer = { version = "=5.0.0", path = "lib/api", features = [ "compiler", "singlepass", "sys", diff --git a/lib/api/Cargo.toml b/lib/api/Cargo.toml index 9891d417788..3c64eedd6b7 100644 --- a/lib/api/Cargo.toml +++ b/lib/api/Cargo.toml @@ -51,15 +51,15 @@ loupe = { version = "0.1.3", optional = true, features = [ # Dependencies and Development Dependencies for `sys`. [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # - Mandatory dependencies for `sys`. -wasmer-vm = { path = "../vm", version = "=5.0.0-rc.1" } -wasmer-compiler = { path = "../compiler", version = "=5.0.0-rc.1" } -wasmer-derive = { path = "../derive", version = "=5.0.0-rc.1" } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } +wasmer-vm = { path = "../vm", version = "=5.0.0" } +wasmer-compiler = { path = "../compiler", version = "=5.0.0" } +wasmer-derive = { path = "../derive", version = "=5.0.0" } +wasmer-types = { path = "../types", version = "=5.0.0" } target-lexicon = { version = "0.12.2", default-features = false } # - Optional dependencies for `sys`. -wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.0-rc.1", optional = true } -wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.0-rc.1", optional = true } -wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.0-rc.1", optional = true } +wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.0", optional = true } +wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=5.0.0", optional = true } +wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=5.0.0", optional = true } wasm-bindgen = { version = "0.2.74", optional = true } js-sys = { version = "0.3.51", optional = true } @@ -74,17 +74,17 @@ windows-sys = "0.59" wat = "1.0" tempfile = "3.6.0" anyhow = "1.0" -macro-wasmer-universal-test = { version = "5.0.0-rc.1", path = "./macro-wasmer-universal-test" } +macro-wasmer-universal-test = { version = "5.0.0", path = "./macro-wasmer-universal-test" } # Dependencies and Develoment Dependencies for `js`. [target.'cfg(target_arch = "wasm32")'.dependencies] # - Mandatory dependencies for `js`. -wasmer-types = { path = "../types", version = "=5.0.0-rc.1", default-features = false, features = [ +wasmer-types = { path = "../types", version = "=5.0.0", default-features = false, features = [ "std", ] } wasm-bindgen = "0.2.74" js-sys = "0.3.51" -wasmer-derive = { path = "../derive", version = "=5.0.0-rc.1" } +wasmer-derive = { path = "../derive", version = "=5.0.0" } # - Optional dependencies for `js`. wasmparser = { workspace = true, default-features = false, optional = true } hashbrown = { version = "0.11", optional = true } @@ -96,7 +96,7 @@ serde = { version = "1.0", features = ["derive"] } wat = "1.0" anyhow = "1.0" wasm-bindgen-test = "0.3.0" -macro-wasmer-universal-test = { version = "5.0.0-rc.1", path = "./macro-wasmer-universal-test" } +macro-wasmer-universal-test = { version = "5.0.0", path = "./macro-wasmer-universal-test" } # Specific to `js`. # diff --git a/lib/api/macro-wasmer-universal-test/Cargo.toml b/lib/api/macro-wasmer-universal-test/Cargo.toml index 2a856b4eb82..89c3d61b476 100644 --- a/lib/api/macro-wasmer-universal-test/Cargo.toml +++ b/lib/api/macro-wasmer-universal-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "macro-wasmer-universal-test" -version = "5.0.0-rc.1" +version = "5.0.0" edition = "2021" license = "MIT" description = "Universal test macro for wasmer-test" diff --git a/lib/c-api/Cargo.toml b/lib/c-api/Cargo.toml index 442b6c394fe..fd33595659e 100644 --- a/lib/c-api/Cargo.toml +++ b/lib/c-api/Cargo.toml @@ -24,13 +24,13 @@ crate-type = ["staticlib", "cdylib"] #"cdylib", "rlib", "staticlib"] [dependencies] # We rename `wasmer` to `wasmer-api` to avoid the conflict with this # library name (see `[lib]`). -wasmer-api = { version = "=5.0.0-rc.1", path = "../api", default-features = false, package = "wasmer" } -wasmer-compiler = { version = "=5.0.0-rc.1", path = "../compiler", optional = true } -wasmer-compiler-cranelift = { version = "=5.0.0-rc.1", path = "../compiler-cranelift", optional = true } -wasmer-compiler-llvm = { version = "=5.0.0-rc.1", path = "../compiler-llvm", optional = true } -wasmer-compiler-singlepass = { version = "=5.0.0-rc.1", path = "../compiler-singlepass", optional = true } -wasmer-middlewares = { version = "=5.0.0-rc.1", path = "../middlewares", optional = true } -wasmer-types = { version = "=5.0.0-rc.1", path = "../types" } +wasmer-api = { version = "=5.0.0", path = "../api", default-features = false, package = "wasmer" } +wasmer-compiler = { version = "=5.0.0", path = "../compiler", optional = true } +wasmer-compiler-cranelift = { version = "=5.0.0", path = "../compiler-cranelift", optional = true } +wasmer-compiler-llvm = { version = "=5.0.0", path = "../compiler-llvm", optional = true } +wasmer-compiler-singlepass = { version = "=5.0.0", path = "../compiler-singlepass", optional = true } +wasmer-middlewares = { version = "=5.0.0", path = "../middlewares", optional = true } +wasmer-types = { version = "=5.0.0", path = "../types" } wasmer-wasix = { path = "../wasix", version="=0.29.0", features = ["host-fs", "host-vnet"], optional = true } webc = { workspace = true, optional = true } virtual-fs = { version = "0.18.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] } diff --git a/lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml b/lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml index 96d7c9f8810..4b0e89cfdf6 100644 --- a/lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml +++ b/lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-capi-examples-runner" -version = "5.0.0-rc.1" +version = "5.0.0" edition = "2021" license = "MIT" description = "wasmer-capi-examples-runner" diff --git a/lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml b/lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml index 64336f11f4c..eac0da1efc5 100644 --- a/lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml +++ b/lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-c-api-test-runner" -version = "5.0.0-rc.1" +version = "5.0.0" edition = "2021" license = "MIT" description = "wasmer-c-api-test-runner" diff --git a/lib/cache/Cargo.toml b/lib/cache/Cargo.toml index 9c696e59033..14b238f97a2 100644 --- a/lib/cache/Cargo.toml +++ b/lib/cache/Cargo.toml @@ -13,7 +13,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false } +wasmer = { path = "../api", version = "=5.0.0", default-features = false } hex = "0.4" thiserror = "1" blake3 = "1.0" @@ -26,8 +26,8 @@ clap_derive = { version = "=4.4.7" } clap_lex = { version = "=0.6.0" } tempfile = "3.6.0" rand = "0.8.3" -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = ["sys", "cranelift"] } -wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.0-rc.1" } +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = ["sys", "cranelift"] } +wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=5.0.0" } [features] default = ["filesystem"] diff --git a/lib/cli-compiler/Cargo.toml b/lib/cli-compiler/Cargo.toml index e71ab7d8e27..152dbb21b39 100644 --- a/lib/cli-compiler/Cargo.toml +++ b/lib/cli-compiler/Cargo.toml @@ -20,8 +20,8 @@ path = "src/bin/wasmer_compiler.rs" doc = false [dependencies] -wasmer-compiler = { version = "=5.0.0-rc.1", path = "../compiler", features = ["compiler"] } -wasmer-types = { version = "=5.0.0-rc.1", path = "../types" } +wasmer-compiler = { version = "=5.0.0", path = "../compiler", features = ["compiler"] } +wasmer-types = { version = "=5.0.0", path = "../types" } is-terminal = "0.4.7" colored = "2.0" anyhow = "1.0" @@ -36,13 +36,13 @@ log = { version = "0.4", optional = true } target-lexicon = { version = "0.12", features = ["std"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -wasmer-compiler-singlepass = { version = "=5.0.0-rc.1", path = "../compiler-singlepass", optional = true } -wasmer-compiler-cranelift = { version = "=5.0.0-rc.1", path = "../compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "=5.0.0", path = "../compiler-singlepass", optional = true } +wasmer-compiler-cranelift = { version = "=5.0.0", path = "../compiler-cranelift", optional = true } clap = { version = "4.4.0", features = ["derive", "env"] } [target.'cfg(target_arch = "wasm32")'.dependencies] -wasmer-compiler-singlepass = { version = "=5.0.0-rc.1", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] } -wasmer-compiler-cranelift = { version = "=5.0.0-rc.1", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] } +wasmer-compiler-singlepass = { version = "=5.0.0", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] } +wasmer-compiler-cranelift = { version = "=5.0.0", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] } # NOTE: Must use different features for clap because the "color" feature does not # work on wasi, due to the anstream dependency not compiling. clap = { version = "4.4.0", default-features = false, features = [ diff --git a/lib/cli/Cargo.toml b/lib/cli/Cargo.toml index e7c8baa4c2a..5b0b69fc36a 100644 --- a/lib/cli/Cargo.toml +++ b/lib/cli/Cargo.toml @@ -112,16 +112,16 @@ enable-serde = [ [dependencies] # Repo-local dependencies. -wasmer = { version = "=5.0.0-rc.1", path = "../api", default-features = false } -wasmer-compiler = { version = "=5.0.0-rc.1", path = "../compiler", features = [ +wasmer = { version = "=5.0.0", path = "../api", default-features = false } +wasmer-compiler = { version = "=5.0.0", path = "../compiler", features = [ "compiler", ], optional = true } -wasmer-compiler-cranelift = { version = "=5.0.0-rc.1", path = "../compiler-cranelift", optional = true } -wasmer-compiler-singlepass = { version = "=5.0.0-rc.1", path = "../compiler-singlepass", optional = true } -wasmer-compiler-llvm = { version = "=5.0.0-rc.1", path = "../compiler-llvm", optional = true } +wasmer-compiler-cranelift = { version = "=5.0.0", path = "../compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "=5.0.0", path = "../compiler-singlepass", optional = true } +wasmer-compiler-llvm = { version = "=5.0.0", path = "../compiler-llvm", optional = true } wasmer-package.workspace = true -wasmer-vm = { version = "=5.0.0-rc.1", path = "../vm", optional = true } +wasmer-vm = { version = "=5.0.0", path = "../vm", optional = true } wasmer-wasix = { path = "../wasix", version = "=0.29.0", features = [ "logging", "webc_runner_rt_wcgi", @@ -130,11 +130,11 @@ wasmer-wasix = { path = "../wasix", version = "=0.29.0", features = [ "host-fs", "ctrlc", ] } -wasmer-wast = { version = "=5.0.0-rc.1", path = "../../tests/lib/wast", optional = true } -wasmer-types = { version = "=5.0.0-rc.1", path = "../types", features = [ +wasmer-wast = { version = "=5.0.0", path = "../../tests/lib/wast", optional = true } +wasmer-types = { version = "=5.0.0", path = "../types", features = [ "enable-serde", ] } -wasmer-object = { version = "=5.0.0-rc.1", path = "../object", optional = true } +wasmer-object = { version = "=5.0.0", path = "../object", optional = true } virtual-fs = { version = "0.18.0", path = "../virtual-fs", default-features = false, features = [ "host-fs", ] } diff --git a/lib/compiler-cranelift/Cargo.toml b/lib/compiler-cranelift/Cargo.toml index 31f14994c6c..866bb86700c 100644 --- a/lib/compiler-cranelift/Cargo.toml +++ b/lib/compiler-cranelift/Cargo.toml @@ -14,11 +14,11 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-compiler = { path = "../compiler", version = "=5.0.0-rc.1", features = [ +wasmer-compiler = { path = "../compiler", version = "=5.0.0", features = [ "translator", "compiler", ], default-features = false } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1", default-features = false, features = [ +wasmer-types = { path = "../types", version = "=5.0.0", default-features = false, features = [ "std", ] } cranelift-entity = { version = "=0.110.2", default-features = false } diff --git a/lib/compiler-llvm/Cargo.toml b/lib/compiler-llvm/Cargo.toml index c172303a0d4..a51221f1208 100644 --- a/lib/compiler-llvm/Cargo.toml +++ b/lib/compiler-llvm/Cargo.toml @@ -14,11 +14,11 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-compiler = { path = "../compiler", version = "=5.0.0-rc.1", features = [ +wasmer-compiler = { path = "../compiler", version = "=5.0.0", features = [ "translator", "compiler" ] } -wasmer-vm = { path = "../vm", version = "=5.0.0-rc.1" } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } +wasmer-vm = { path = "../vm", version = "=5.0.0" } +wasmer-types = { path = "../types", version = "=5.0.0" } target-lexicon = { version = "0.12.2", default-features = false } smallvec = "1.6" object = { version = "0.30.3", default-features = false, features = ["read"] } diff --git a/lib/compiler-singlepass/Cargo.toml b/lib/compiler-singlepass/Cargo.toml index ac7a541b47e..c06f8198b75 100644 --- a/lib/compiler-singlepass/Cargo.toml +++ b/lib/compiler-singlepass/Cargo.toml @@ -14,8 +14,8 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-compiler = { path = "../compiler", version = "=5.0.0-rc.1", features = ["translator", "compiler"], default-features = false } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1", default-features = false, features = ["std"] } +wasmer-compiler = { path = "../compiler", version = "=5.0.0", features = ["translator", "compiler"], default-features = false } +wasmer-types = { path = "../types", version = "=5.0.0", default-features = false, features = ["std"] } hashbrown = { version = "0.11", optional = true } gimli = { workspace = true, optional = true } enumset.workspace = true diff --git a/lib/compiler/Cargo.toml b/lib/compiler/Cargo.toml index f5d68578125..f8adbb0b87e 100644 --- a/lib/compiler/Cargo.toml +++ b/lib/compiler/Cargo.toml @@ -13,8 +13,8 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-types = { path = "../types", version = "=5.0.0-rc.1", default-features = false } -wasmer-object = { path = "../object", version = "=5.0.0-rc.1", optional = true } +wasmer-types = { path = "../types", version = "=5.0.0", default-features = false } +wasmer-object = { path = "../object", version = "=5.0.0", optional = true } wasmparser = { workspace = true, optional = true, default-features = false } enumset.workspace = true hashbrown = { version = "0.11", optional = true } @@ -45,7 +45,7 @@ shared-buffer = { workspace = true } libc.workspace = true [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -wasmer-vm = { path = "../vm", version = "=5.0.0-rc.1" } +wasmer-vm = { path = "../vm", version = "=5.0.0" } region = { version = "3.0" } [target.'cfg(target_os = "windows")'.dependencies] diff --git a/lib/journal/Cargo.toml b/lib/journal/Cargo.toml index 7dcfc81a2ab..a4be220f214 100644 --- a/lib/journal/Cargo.toml +++ b/lib/journal/Cargo.toml @@ -14,7 +14,7 @@ default = ["log-file", "wasmer/sys"] log-file = ["shared-buffer"] [dependencies] -wasmer = { default-features = false, path = "../api", version = "=5.0.0-rc.1" } +wasmer = { default-features = false, path = "../api", version = "=5.0.0" } wasmer-wasix-types = { path = "../wasi-types", version = "0.29.0", features = [ "enable-serde", ] } diff --git a/lib/middlewares/Cargo.toml b/lib/middlewares/Cargo.toml index 1256a88a314..7cd87cef266 100644 --- a/lib/middlewares/Cargo.toml +++ b/lib/middlewares/Cargo.toml @@ -13,12 +13,12 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = ["compiler"] } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } -wasmer-vm = { path = "../vm", version = "=5.0.0-rc.1" } +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = ["compiler"] } +wasmer-types = { path = "../types", version = "=5.0.0" } +wasmer-vm = { path = "../vm", version = "=5.0.0" } [dev-dependencies] -wasmer = { path = "../api", version = "=5.0.0-rc.1", features = ["compiler"] } +wasmer = { path = "../api", version = "=5.0.0", features = ["compiler"] } [badges] maintenance = { status = "actively-developed" } diff --git a/lib/object/Cargo.toml b/lib/object/Cargo.toml index 5500d84dc61..a8695d1c959 100644 --- a/lib/object/Cargo.toml +++ b/lib/object/Cargo.toml @@ -13,7 +13,7 @@ rust-version.workspace = true version.workspace = true [dependencies] -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } +wasmer-types = { path = "../types", version = "=5.0.0" } object = { version = "0.29.0", default-features = false, features = ["write"] } thiserror = "1.0" diff --git a/lib/swift/Cargo.toml b/lib/swift/Cargo.toml index 28aa443330d..427e74bfc0e 100644 --- a/lib/swift/Cargo.toml +++ b/lib/swift/Cargo.toml @@ -18,7 +18,7 @@ uniffi = "0.27" virtual-fs = { path = "../virtual-fs", version = "=0.18.0", default-features = false, features = [ "webc-fs", ] } -wasmer = { version = "=5.0.0-rc.1", path = "../api", default-features = false, features = [ +wasmer = { version = "=5.0.0", path = "../api", default-features = false, features = [ "wamr", "std", ] } diff --git a/lib/sys-utils/Cargo.toml b/lib/sys-utils/Cargo.toml index fee84c1620d..9e0aa779d8d 100644 --- a/lib/sys-utils/Cargo.toml +++ b/lib/sys-utils/Cargo.toml @@ -12,9 +12,9 @@ repository.workspace = true rust-version.workspace = true [dependencies] -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = ["sys", "compiler"] } -wasmer-vm = { path = "../vm", version = "=5.0.0-rc.1" } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = ["sys", "compiler"] } +wasmer-vm = { path = "../vm", version = "=5.0.0" } +wasmer-types = { path = "../types", version = "=5.0.0" } region = { version = "3.0" } tracing = "0.1.37" @@ -23,7 +23,7 @@ libc.workspace = true [dev-dependencies] wasmer-wasix.workspace = true -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = ["sys", "compiler", "cranelift"] } +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = ["sys", "compiler", "cranelift"] } tracing-subscriber = { version = "0.3.16", features = ["fmt"] } tracing = "0.1.37" diff --git a/lib/vm/Cargo.toml b/lib/vm/Cargo.toml index ce20b731af2..9bb6784de2a 100644 --- a/lib/vm/Cargo.toml +++ b/lib/vm/Cargo.toml @@ -15,7 +15,7 @@ version.workspace = true [dependencies] memoffset.workspace = true dashmap.workspace = true -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } +wasmer-types = { path = "../types", version = "=5.0.0" } libc.workspace = true indexmap = { workspace = true } thiserror = "1.0" diff --git a/lib/wai-bindgen-wasmer/Cargo.toml b/lib/wai-bindgen-wasmer/Cargo.toml index f9e4f159e7a..05471dd7745 100644 --- a/lib/wai-bindgen-wasmer/Cargo.toml +++ b/lib/wai-bindgen-wasmer/Cargo.toml @@ -20,7 +20,7 @@ once_cell = "1.13" thiserror = "1.0" tracing-lib = { version = "0.1.26", optional = true, package = "tracing" } wai-bindgen-wasmer-impl = { version = "0.2.2" } -wasmer = { version = "=5.0.0-rc.1", path = "../api", default-features = false } +wasmer = { version = "=5.0.0", path = "../api", default-features = false } [features] # Enables generated code to emit events via the `tracing` crate whenever wasm is diff --git a/lib/wasi-types/Cargo.toml b/lib/wasi-types/Cargo.toml index 4809202c2dc..a7946bccd2b 100644 --- a/lib/wasi-types/Cargo.toml +++ b/lib/wasi-types/Cargo.toml @@ -15,9 +15,9 @@ rust-version.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wasmer = { default-features = false, path = "../api", version = "=5.0.0-rc.1" } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1" } -wasmer-derive = { path = "../derive", version = "=5.0.0-rc.1" } +wasmer = { default-features = false, path = "../api", version = "=5.0.0" } +wasmer-types = { path = "../types", version = "=5.0.0" } +wasmer-derive = { path = "../derive", version = "=5.0.0" } wai-bindgen-gen-rust = "0.2.1" wai-bindgen-rust = { version = "0.2.1", default-features = false, features = ["macros"] } wai-bindgen-gen-rust-wasm = "0.2.1" diff --git a/lib/wasix/Cargo.toml b/lib/wasix/Cargo.toml index 7e3facb04ad..ac0c42b85f9 100644 --- a/lib/wasix/Cargo.toml +++ b/lib/wasix/Cargo.toml @@ -17,8 +17,8 @@ wasmer-package.workspace = true wasmer-wasix-types = { path = "../wasi-types", version = "0.29.0", features = [ "enable-serde", ] } -wasmer-types = { path = "../types", version = "=5.0.0-rc.1", default-features = false } -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = [ +wasmer-types = { path = "../types", version = "=5.0.0", default-features = false } +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = [ "wat", "js-serializable-module", ] } @@ -152,7 +152,7 @@ windows-sys = { version = "0.59", features = [ terminal_size = { version = "0.3.0" } [dev-dependencies] -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = [ +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = [ "wat", "js-serializable-module", ] } @@ -171,7 +171,7 @@ tracing-wasm = "0.2" [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] tracing-subscriber = { version = "^0.3" } -wasmer = { path = "../api", version = "=5.0.0-rc.1", default-features = false, features = [ +wasmer = { path = "../api", version = "=5.0.0", default-features = false, features = [ "wat", "js-serializable-module", "cranelift", diff --git a/scripts/update-version.py b/scripts/update-version.py index 0767737b49d..e091f010376 100644 --- a/scripts/update-version.py +++ b/scripts/update-version.py @@ -1,7 +1,7 @@ #!/usr/bin/python -PREVIOUS_VERSION='4.4.0' -NEXT_VERSION='5.0.0-rc.1' +PREVIOUS_VERSION='5.0.0-rc.1' +NEXT_VERSION='5.0.0' import os import re diff --git a/scripts/windows-installer/wasmer.iss b/scripts/windows-installer/wasmer.iss index 79d129967ff..c96eed7c20f 100644 --- a/scripts/windows-installer/wasmer.iss +++ b/scripts/windows-installer/wasmer.iss @@ -1,6 +1,6 @@ [Setup] AppName=Wasmer -AppVersion=5.0.0-rc.1 +AppVersion=5.0.0 DefaultDirName={pf}\Wasmer DefaultGroupName=Wasmer Compression=lzma2 diff --git a/tests/integration/cli/Cargo.toml b/tests/integration/cli/Cargo.toml index 2fbc579caf4..3567aa5f1dd 100644 --- a/tests/integration/cli/Cargo.toml +++ b/tests/integration/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-integration-tests-cli" -version = "5.0.0-rc.1" +version = "5.0.0" authors = ["Wasmer Engineering Team "] description = "CLI integration tests" repository = "https://github.com/wasmerio/wasmer" diff --git a/tests/integration/ios/Cargo.toml b/tests/integration/ios/Cargo.toml index 38339b06ae0..c6961c105d5 100644 --- a/tests/integration/ios/Cargo.toml +++ b/tests/integration/ios/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-integration-tests-ios" -version = "5.0.0-rc.1" +version = "5.0.0" authors = ["Wasmer Engineering Team "] description = "iOS integration tests" repository = "https://github.com/wasmerio/wasmer" diff --git a/tests/lib/wast/Cargo.toml b/tests/lib/wast/Cargo.toml index 39169305246..04fb3c9f57f 100644 --- a/tests/lib/wast/Cargo.toml +++ b/tests/lib/wast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wast" -version = "5.0.0-rc.1" +version = "5.0.0" authors = ["Wasmer Engineering Team "] description = "wast testing support for wasmer" license = "MIT OR Apache-2.0 WITH LLVM-exception" @@ -13,7 +13,7 @@ edition = "2018" [dependencies] wasmer-types = { path = "../../../lib/types", version="=5.0.0-rc.1" } wasmer-wasix = { path = "../../../lib/wasix", version="=0.29.0" } -wasmer = { path = "../../../lib/api", version = "=5.0.0-rc.1", default-features = false } +wasmer = { path = "../../../lib/api", version = "=5.0.0", default-features = false } virtual-fs = { path = "../../../lib/virtual-fs", version = "0.18.0" } anyhow = "1.0" diff --git a/tests/wasi-wast/Cargo.toml b/tests/wasi-wast/Cargo.toml index 9848e2b63c8..1df9987dfd5 100644 --- a/tests/wasi-wast/Cargo.toml +++ b/tests/wasi-wast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasi-test-generator" -version = "5.0.0-rc.1" +version = "5.0.0" description = "Tests for our WASI implementation" license = "MIT" authors = ["Wasmer Engineering Team "] diff --git a/tests/wasmer-argus/Cargo.toml b/tests/wasmer-argus/Cargo.toml index 6aa3db60828..1330a466141 100644 --- a/tests/wasmer-argus/Cargo.toml +++ b/tests/wasmer-argus/Cargo.toml @@ -24,7 +24,7 @@ clap = {version = "4.4.11", features = ["derive", "string"]} tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.114" -wasmer = { version = "5.0.0-rc.1", path = "../../lib/api", features = ["engine", "core", "singlepass", "cranelift", "llvm"], optional = true } +wasmer = { version = "5.0.0", path = "../../lib/api", features = ["engine", "core", "singlepass", "cranelift", "llvm"], optional = true } derive_more = "0.99.17" webc.workspace = true async-trait = "0.1.77" From 39247dec7e346b27b4d4619c49ede80824240a90 Mon Sep 17 00:00:00 2001 From: "M.Amin Rayej" Date: Tue, 29 Oct 2024 18:07:28 +0330 Subject: [PATCH 3/3] update 0.x package versions --- CHANGELOG.md | 3 ++ Cargo.lock | 68 +++++++++++++++---------------- Cargo.toml | 2 +- lib/backend-api/Cargo.toml | 4 +- lib/c-api/Cargo.toml | 4 +- lib/cli/Cargo.toml | 10 ++--- lib/config/Cargo.toml | 2 +- lib/journal/Cargo.toml | 8 ++-- lib/package/Cargo.toml | 4 +- lib/swift/Cargo.toml | 6 +-- lib/sys-utils/Cargo.toml | 2 +- lib/virtual-fs/Cargo.toml | 2 +- lib/virtual-net/Cargo.toml | 2 +- lib/wai-bindgen-wasmer/Cargo.toml | 2 +- lib/wasi-types/Cargo.toml | 2 +- lib/wasix/Cargo.toml | 12 +++--- tests/lib/wast/Cargo.toml | 6 +-- 17 files changed, 71 insertions(+), 68 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbc1bfbb3f4..82cc292d292 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C ## 5.0.0 - 29/10/2024 +The main star of this release is the experimental support for three new backends: v8, wamr and wasmi. Also, many dependencies, namely LLVM, Cranelift, and rkyv are updated +which bring significant enhancements. + ## Added - [#5185](https://github.com/wasmerio/wasmer/pull/5185) Add execution benchmarks diff --git a/Cargo.lock b/Cargo.lock index 981b07f9d28..64a1def4cb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2941,7 +2941,7 @@ dependencies = [ [[package]] name = "macro-wasmer-universal-test" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "proc-macro2", "quote", @@ -5864,7 +5864,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "virtual-fs" -version = "0.18.0" +version = "0.19.0" dependencies = [ "anyhow", "async-trait", @@ -5912,7 +5912,7 @@ dependencies = [ [[package]] name = "virtual-net" -version = "0.10.0" +version = "0.11.0" dependencies = [ "anyhow", "async-trait", @@ -6009,7 +6009,7 @@ dependencies = [ [[package]] name = "wai-bindgen-wasmer" -version = "0.29.0" +version = "0.30.0" dependencies = [ "anyhow", "async-trait", @@ -6094,7 +6094,7 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasi-test-generator" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "glob", "gumdrop", @@ -6278,7 +6278,7 @@ dependencies = [ [[package]] name = "wasmer" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "anyhow", "bindgen", @@ -6323,7 +6323,7 @@ dependencies = [ [[package]] name = "wasmer-argus" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "anyhow", "async-trait", @@ -6348,7 +6348,7 @@ dependencies = [ [[package]] name = "wasmer-backend-api" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "async-tungstenite", @@ -6393,7 +6393,7 @@ dependencies = [ [[package]] name = "wasmer-c-api" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "cbindgen", "cfg-if", @@ -6423,7 +6423,7 @@ dependencies = [ [[package]] name = "wasmer-c-api-test-runner" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "cc", "regex", @@ -6433,7 +6433,7 @@ dependencies = [ [[package]] name = "wasmer-cache" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "blake3", "clap", @@ -6451,7 +6451,7 @@ dependencies = [ [[package]] name = "wasmer-capi-examples-runner" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "cc", "regex", @@ -6461,7 +6461,7 @@ dependencies = [ [[package]] name = "wasmer-cli" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "anyhow", "assert_cmd 2.0.16", @@ -6556,7 +6556,7 @@ dependencies = [ [[package]] name = "wasmer-compiler" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "backtrace", "bytes", @@ -6588,7 +6588,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-cli" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "anyhow", "bytesize", @@ -6609,7 +6609,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-cranelift" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -6629,7 +6629,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-llvm" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "byteorder", "cc", @@ -6651,7 +6651,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-singlepass" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "byteorder", "dynasm", @@ -6670,7 +6670,7 @@ dependencies = [ [[package]] name = "wasmer-config" -version = "0.9.0" +version = "0.10.0" dependencies = [ "anyhow", "bytesize", @@ -6692,7 +6692,7 @@ dependencies = [ [[package]] name = "wasmer-derive" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "compiletest_rs", "proc-macro-error2", @@ -6732,7 +6732,7 @@ dependencies = [ [[package]] name = "wasmer-integration-tests-cli" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "anyhow", "assert_cmd 2.0.16", @@ -6760,11 +6760,11 @@ dependencies = [ [[package]] name = "wasmer-integration-tests-ios" -version = "5.0.0-rc.1" +version = "5.0.0" [[package]] name = "wasmer-journal" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "async-trait", @@ -6791,7 +6791,7 @@ dependencies = [ [[package]] name = "wasmer-middlewares" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "wasmer", "wasmer-types", @@ -6800,7 +6800,7 @@ dependencies = [ [[package]] name = "wasmer-object" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "object 0.29.0", "thiserror", @@ -6809,7 +6809,7 @@ dependencies = [ [[package]] name = "wasmer-package" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "bytes", @@ -6837,7 +6837,7 @@ dependencies = [ [[package]] name = "wasmer-swift" -version = "0.1.0" +version = "0.2.0" dependencies = [ "thiserror", "tokio", @@ -6850,7 +6850,7 @@ dependencies = [ [[package]] name = "wasmer-sys-utils" -version = "0.29.0" +version = "0.30.0" dependencies = [ "libc", "region", @@ -6864,7 +6864,7 @@ dependencies = [ [[package]] name = "wasmer-types" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "bytecheck 0.6.12", "enum-iterator", @@ -6886,7 +6886,7 @@ dependencies = [ [[package]] name = "wasmer-vm" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "backtrace", "cc", @@ -6915,7 +6915,7 @@ dependencies = [ [[package]] name = "wasmer-wasix" -version = "0.29.0" +version = "0.30.0" dependencies = [ "ahash 0.8.11", "anyhow", @@ -7001,7 +7001,7 @@ dependencies = [ [[package]] name = "wasmer-wasix-types" -version = "0.29.0" +version = "0.30.0" dependencies = [ "anyhow", "bitflags 1.3.2", @@ -7024,7 +7024,7 @@ dependencies = [ [[package]] name = "wasmer-wast" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "anyhow", "futures", @@ -7041,7 +7041,7 @@ dependencies = [ [[package]] name = "wasmer-workspace" -version = "5.0.0-rc.1" +version = "5.0.0" dependencies = [ "anyhow", "build-deps", diff --git a/Cargo.toml b/Cargo.toml index 44503ebbc23..4edcd59265b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -88,7 +88,7 @@ version = "5.0.0" [workspace.dependencies] # Repo-local crates -wasmer-package = { version = "0.1.0", path = "lib/package" } +wasmer-package = { version = "0.2.0", path = "lib/package" } wasmer-config = { path = "./lib/config" } wasmer-wasix = { path = "./lib/wasix" } diff --git a/lib/backend-api/Cargo.toml b/lib/backend-api/Cargo.toml index 4fc31701911..38e67919b93 100644 --- a/lib/backend-api/Cargo.toml +++ b/lib/backend-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-backend-api" -version = "0.1.0" +version = "0.2.0" description = "Client library for the Wasmer GraphQL API" readme = "README.md" documentation = "https://docs.rs/wasmer-backend-api" @@ -15,7 +15,7 @@ rust-version.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] # Wasmer dependencies. -wasmer-config = { version = "0.9.0", path = "../config" } +wasmer-config = { version = "0.10.0", path = "../config" } wasmer-package.workspace = true webc.workspace = true diff --git a/lib/c-api/Cargo.toml b/lib/c-api/Cargo.toml index fd33595659e..24e4469f41e 100644 --- a/lib/c-api/Cargo.toml +++ b/lib/c-api/Cargo.toml @@ -31,9 +31,9 @@ wasmer-compiler-llvm = { version = "=5.0.0", path = "../compiler-llvm", optional wasmer-compiler-singlepass = { version = "=5.0.0", path = "../compiler-singlepass", optional = true } wasmer-middlewares = { version = "=5.0.0", path = "../middlewares", optional = true } wasmer-types = { version = "=5.0.0", path = "../types" } -wasmer-wasix = { path = "../wasix", version="=0.29.0", features = ["host-fs", "host-vnet"], optional = true } +wasmer-wasix = { path = "../wasix", version="=0.30.0", features = ["host-fs", "host-vnet"], optional = true } webc = { workspace = true, optional = true } -virtual-fs = { version = "0.18.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] } +virtual-fs = { version = "0.19.0", path = "../virtual-fs", optional = true, default-features = false, features = ["static-fs"] } enumset.workspace = true cfg-if = "1.0" lazy_static = "1.4" diff --git a/lib/cli/Cargo.toml b/lib/cli/Cargo.toml index 5b0b69fc36a..4183b059b0c 100644 --- a/lib/cli/Cargo.toml +++ b/lib/cli/Cargo.toml @@ -122,7 +122,7 @@ wasmer-compiler-llvm = { version = "=5.0.0", path = "../compiler-llvm", optional wasmer-package.workspace = true wasmer-vm = { version = "=5.0.0", path = "../vm", optional = true } -wasmer-wasix = { path = "../wasix", version = "=0.29.0", features = [ +wasmer-wasix = { path = "../wasix", version = "=0.30.0", features = [ "logging", "webc_runner_rt_wcgi", "webc_runner_rt_dcgi", @@ -135,16 +135,16 @@ wasmer-types = { version = "=5.0.0", path = "../types", features = [ "enable-serde", ] } wasmer-object = { version = "=5.0.0", path = "../object", optional = true } -virtual-fs = { version = "0.18.0", path = "../virtual-fs", default-features = false, features = [ +virtual-fs = { version = "0.19.0", path = "../virtual-fs", default-features = false, features = [ "host-fs", ] } -virtual-net = { version = "0.10.0", path = "../virtual-net" } +virtual-net = { version = "0.11.0", path = "../virtual-net" } virtual-mio = { version = "0.5.0", path = "../virtual-io" } # Wasmer-owned dependencies. webc = { workspace = true } -wasmer-backend-api = { version = "=0.1.0", path = "../backend-api" } +wasmer-backend-api = { version = "=0.2.0", path = "../backend-api" } lazy_static = "1.4.0" # Used by the mount command @@ -168,7 +168,7 @@ serde = { version = "1.0.147", features = ["derive"] } dirs = "4.0" serde_json = { version = "1.0" } target-lexicon = { version = "0.12", features = ["std"] } -wasmer-config = { version = "0.9.0", path = "../config" } +wasmer-config = { version = "0.10.0", path = "../config" } indexmap = "1.9.2" walkdir = "2.3.2" regex = "1.6.0" diff --git a/lib/config/Cargo.toml b/lib/config/Cargo.toml index d71959dc934..965c8a95e4b 100644 --- a/lib/config/Cargo.toml +++ b/lib/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-config" -version = "0.9.0" +version = "0.10.0" description = "Configuration types for Wasmer." edition.workspace = true license.workspace = true diff --git a/lib/journal/Cargo.toml b/lib/journal/Cargo.toml index a4be220f214..af1734b839d 100644 --- a/lib/journal/Cargo.toml +++ b/lib/journal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-journal" -version = "0.11.0" +version = "0.12.0" description = "Journaling functionality used by Wasmer to save and restore WASM state" authors.workspace = true edition.workspace = true @@ -15,13 +15,13 @@ log-file = ["shared-buffer"] [dependencies] wasmer = { default-features = false, path = "../api", version = "=5.0.0" } -wasmer-wasix-types = { path = "../wasi-types", version = "0.29.0", features = [ +wasmer-wasix-types = { path = "../wasi-types", version = "0.30.0", features = [ "enable-serde", ] } -virtual-net = { path = "../virtual-net", version = "0.10.0", default-features = false, features = [ +virtual-net = { path = "../virtual-net", version = "0.11.0", default-features = false, features = [ "rkyv", ] } -virtual-fs = { path = "../virtual-fs", version = "0.18.0", default-features = false } +virtual-fs = { path = "../virtual-fs", version = "0.19.0", default-features = false } shared-buffer = { workspace = true, optional = true } base64.workspace = true rkyv = { workspace = true } diff --git a/lib/package/Cargo.toml b/lib/package/Cargo.toml index 602d8f75a10..e148d09299e 100644 --- a/lib/package/Cargo.toml +++ b/lib/package/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-package" -version = "0.1.0" +version = "0.2.0" description = "Packaging related types and functions for Wasmer" authors.workspace = true @@ -14,7 +14,7 @@ rust-version.workspace = true [dependencies] webc.workspace = true -wasmer-config = { version = "0.9.0", path = "../config" } +wasmer-config = { version = "0.10.0", path = "../config" } toml = "0.8.0" bytes = "1.8.0" sha2 = "0.10.8" diff --git a/lib/swift/Cargo.toml b/lib/swift/Cargo.toml index 427e74bfc0e..c70ec2661d8 100644 --- a/lib/swift/Cargo.toml +++ b/lib/swift/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-swift" -version = "0.1.0" +version = "0.2.0" edition = "2021" description = "Experimental wasmer bindings for swift" license = "MIT" @@ -15,14 +15,14 @@ name = "wasmer_swift" thiserror = "1" tokio = { version = "1.28.1", features = [ "rt" ], default-features = false } uniffi = "0.27" -virtual-fs = { path = "../virtual-fs", version = "=0.18.0", default-features = false, features = [ +virtual-fs = { path = "../virtual-fs", version = "=0.19.0", default-features = false, features = [ "webc-fs", ] } wasmer = { version = "=5.0.0", path = "../api", default-features = false, features = [ "wamr", "std", ] } -wasmer-wasix = { version = "=0.29.0", path = "../wasix" } +wasmer-wasix = { version = "=0.30.0", path = "../wasix" } webc.workspace = true diff --git a/lib/sys-utils/Cargo.toml b/lib/sys-utils/Cargo.toml index 9e0aa779d8d..45f12c9457e 100644 --- a/lib/sys-utils/Cargo.toml +++ b/lib/sys-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-sys-utils" -version = "0.29.0" +version = "0.30.0" description = "Wasmer utilities for a sys environment." categories = ["wasm"] keywords = ["wasm", "webassembly"] diff --git a/lib/virtual-fs/Cargo.toml b/lib/virtual-fs/Cargo.toml index beb5a129d6f..7b783622c4f 100644 --- a/lib/virtual-fs/Cargo.toml +++ b/lib/virtual-fs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "virtual-fs" -version = "0.18.0" +version = "0.19.0" description = "Wasmer Virtual FileSystem" authors.workspace = true edition.workspace = true diff --git a/lib/virtual-net/Cargo.toml b/lib/virtual-net/Cargo.toml index 6fab8e1a62b..a2a1a1d3555 100644 --- a/lib/virtual-net/Cargo.toml +++ b/lib/virtual-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "virtual-net" -version = "0.10.0" +version = "0.11.0" description = "Wasmer Virtual Networking" authors.workspace = true edition.workspace = true diff --git a/lib/wai-bindgen-wasmer/Cargo.toml b/lib/wai-bindgen-wasmer/Cargo.toml index 05471dd7745..11e0eef8162 100644 --- a/lib/wai-bindgen-wasmer/Cargo.toml +++ b/lib/wai-bindgen-wasmer/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "wai-bindgen-wasmer" description = "Generate WAI glue for a Rust Wasmer host" -version = "0.29.0" +version = "0.30.0" categories = ["wasm", "os"] keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"] readme = "README.md" diff --git a/lib/wasi-types/Cargo.toml b/lib/wasi-types/Cargo.toml index a7946bccd2b..4207b024446 100644 --- a/lib/wasi-types/Cargo.toml +++ b/lib/wasi-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasix-types" -version = "0.29.0" +version = "0.30.0" description = "WASI and WASIX types for Wasmer WebAssembly runtime" categories = ["wasm", "os"] keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"] diff --git a/lib/wasix/Cargo.toml b/lib/wasix/Cargo.toml index ac0c42b85f9..2e8417b49d5 100644 --- a/lib/wasix/Cargo.toml +++ b/lib/wasix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasix" -version = "0.29.0" +version = "0.30.0" description = "WASI and WASIX implementation library for Wasmer WebAssembly runtime" categories = ["wasm", "os"] keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"] @@ -14,7 +14,7 @@ rust-version.workspace = true [dependencies] wasmer-package.workspace = true -wasmer-wasix-types = { path = "../wasi-types", version = "0.29.0", features = [ +wasmer-wasix-types = { path = "../wasi-types", version = "0.30.0", features = [ "enable-serde", ] } wasmer-types = { path = "../types", version = "=5.0.0", default-features = false } @@ -23,14 +23,14 @@ wasmer = { path = "../api", version = "=5.0.0", default-features = false, featur "js-serializable-module", ] } virtual-mio = { path = "../virtual-io", version = "0.5.0", default-features = false } -virtual-fs = { path = "../virtual-fs", version = "0.18.0", default-features = false, features = [ +virtual-fs = { path = "../virtual-fs", version = "0.19.0", default-features = false, features = [ "webc-fs", ] } -virtual-net = { path = "../virtual-net", version = "0.10.0", default-features = false, features = [ +virtual-net = { path = "../virtual-net", version = "0.11.0", default-features = false, features = [ "rkyv", ] } -wasmer-journal = { path = "../journal", version = "0.11.0", default-features = false } -wasmer-config = { version = "0.9.0", path = "../config" } +wasmer-journal = { path = "../journal", version = "0.12.0", default-features = false } +wasmer-config = { version = "0.10.0", path = "../config" } http.workspace = true dashmap.workspace = true diff --git a/tests/lib/wast/Cargo.toml b/tests/lib/wast/Cargo.toml index 04fb3c9f57f..44abbe911b7 100644 --- a/tests/lib/wast/Cargo.toml +++ b/tests/lib/wast/Cargo.toml @@ -11,10 +11,10 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-types = { path = "../../../lib/types", version="=5.0.0-rc.1" } -wasmer-wasix = { path = "../../../lib/wasix", version="=0.29.0" } +wasmer-types = { path = "../../../lib/types", version="=5.0.0" } +wasmer-wasix = { path = "../../../lib/wasix", version="=0.30.0" } wasmer = { path = "../../../lib/api", version = "=5.0.0", default-features = false } -virtual-fs = { path = "../../../lib/virtual-fs", version = "0.18.0" } +virtual-fs = { path = "../../../lib/virtual-fs", version = "0.19.0" } anyhow = "1.0" wast = "216.0.0"