diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c88d46a1df..e9f3c4be5e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,29 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C ## **Unreleased** +## 3.2.1 - 21/04/2023 + +Some quick fixes for this maintenance release, mainly oriented towards Docs. + +## Added + + - [#3782](https://github.com/wasmerio/wasmer/pull/3782) Add FreeBSD x86 support + +## Changed + + - [#3786](https://github.com/wasmerio/wasmer/pull/3786) Made Stack Size parametrable (for #3760) + - [#3805](https://github.com/wasmerio/wasmer/pull/3805) Wasi runner args + - [#3795](https://github.com/wasmerio/wasmer/pull/3795) Make sure the compile function passed to runners is Send+Sync + - [#3777](https://github.com/wasmerio/wasmer/pull/3777) Use webc's compat layer in more places + +## Fixed + + - [#3806](https://github.com/wasmerio/wasmer/pull/3806) Fixed FunctionEnv migration doc to 3.0 + - [#3804](https://github.com/wasmerio/wasmer/pull/3804) Fixed doc comment in memory_view.rs + - [#3791](https://github.com/wasmerio/wasmer/pull/3791) Fix doc api + + + ## 3.2.0 - 18/04/2023 A lot of new features since last stable version: diff --git a/Cargo.lock b/Cargo.lock index 46be238b5de..33ed37bc27c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -30,9 +30,9 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "0.7.20" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" +checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" dependencies = [ "memchr", ] @@ -660,9 +660,9 @@ dependencies = [ [[package]] name = "cpufeatures" -version = "0.2.6" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "280a9f2d8b3a38871a3c8a46fb80db65e5e5ed97da80c4d08bf27fb63e35e181" +checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" dependencies = [ "libc", ] @@ -2138,9 +2138,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.141" +version = "0.2.142" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5" +checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317" [[package]] name = "libfuzzer-sys" @@ -2200,9 +2200,9 @@ dependencies = [ [[package]] name = "linux-raw-sys" -version = "0.3.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59d8c75012853d2e872fb56bc8a2e53718e2cafe1a4c823143141c6d90c322f" +checksum = "9b085a4f2cde5781fc4b1717f2e86c62f5cda49de7ba99a7c2eae02b61c9064c" [[package]] name = "llvm-sys" @@ -2257,7 +2257,7 @@ dependencies = [ [[package]] name = "macro-wasmer-universal-test" -version = "3.2.0" +version = "3.2.1" dependencies = [ "proc-macro2", "proc-quote", @@ -2608,9 +2608,9 @@ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" [[package]] name = "openssl" -version = "0.10.50" +version = "0.10.51" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e30d8bc91859781f0a943411186324d580f2bbeb71b452fe91ae344806af3f1" +checksum = "97ea2d98598bf9ada7ea6ee8a30fb74f9156b63bbe495d64ec2b87c269d2dda3" dependencies = [ "bitflags", "cfg-if 1.0.0", @@ -2640,9 +2640,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.85" +version = "0.9.86" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d3d193fb1488ad46ffe3aaabc912cc931d02ee8518fe2959aea8ef52718b0c0" +checksum = "992bac49bdbab4423199c654a5515bd2a6c6a23bf03f2dd3bdb7e5ae6259bc69" dependencies = [ "cc", "libc", @@ -3198,13 +3198,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.7.3" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d" +checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" dependencies = [ "aho-corasick", "memchr", - "regex-syntax", + "regex-syntax 0.7.1", ] [[package]] @@ -3213,7 +3213,7 @@ version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" dependencies = [ - "regex-syntax", + "regex-syntax 0.6.29", ] [[package]] @@ -3222,6 +3222,12 @@ version = "0.6.29" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" +[[package]] +name = "regex-syntax" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" + [[package]] name = "region" version = "3.0.0" @@ -3411,9 +3417,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.37.11" +version = "0.37.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85597d61f83914ddeba6a47b3b8ffe7365107221c2e557ed94426489fefb5f77" +checksum = "f79bef90eb6d984c72722595b5b1348ab39275a5e5123faca6863bf07d75a4e0" dependencies = [ "bitflags", "errno", @@ -4821,7 +4827,7 @@ dependencies = [ [[package]] name = "wai-bindgen-wasmer" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "async-trait", @@ -4916,7 +4922,7 @@ dependencies = [ "url", "validator", "wapm-toml", - "wasmer-registry 4.2.0", + "wasmer-registry 4.4.0", "webc", ] @@ -4944,7 +4950,7 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasi-test-generator" -version = "3.2.0" +version = "3.2.1" dependencies = [ "glob", "gumdrop", @@ -5157,7 +5163,7 @@ dependencies = [ [[package]] name = "wasmer" -version = "3.2.0" +version = "3.2.1" dependencies = [ "anyhow", "bytes", @@ -5207,7 +5213,7 @@ dependencies = [ [[package]] name = "wasmer-c-api" -version = "3.2.0" +version = "3.2.1" dependencies = [ "cbindgen", "cfg-if 1.0.0", @@ -5235,7 +5241,7 @@ dependencies = [ [[package]] name = "wasmer-c-api-test-runner" -version = "3.2.0" +version = "3.2.1" dependencies = [ "cc", "regex", @@ -5245,7 +5251,7 @@ dependencies = [ [[package]] name = "wasmer-cache" -version = "3.2.0" +version = "3.2.1" dependencies = [ "blake3", "criterion", @@ -5259,7 +5265,7 @@ dependencies = [ [[package]] name = "wasmer-capi-examples-runner" -version = "3.2.0" +version = "3.2.1" dependencies = [ "cc", "regex", @@ -5269,7 +5275,7 @@ dependencies = [ [[package]] name = "wasmer-cli" -version = "3.2.0" +version = "3.2.1" dependencies = [ "anyhow", "atty", @@ -5323,7 +5329,7 @@ dependencies = [ "wasmer-compiler-singlepass", "wasmer-emscripten", "wasmer-object", - "wasmer-registry 4.4.0", + "wasmer-registry 4.4.1", "wasmer-toml", "wasmer-types", "wasmer-vm", @@ -5335,7 +5341,7 @@ dependencies = [ [[package]] name = "wasmer-compiler" -version = "3.2.0" +version = "3.2.1" dependencies = [ "backtrace", "cfg-if 1.0.0", @@ -5361,7 +5367,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-cli" -version = "3.2.0" +version = "3.2.1" dependencies = [ "anyhow", "atty", @@ -5382,7 +5388,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-cranelift" -version = "3.2.0" +version = "3.2.1" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -5401,7 +5407,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-llvm" -version = "3.2.0" +version = "3.2.1" dependencies = [ "byteorder", "cc", @@ -5423,7 +5429,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-singlepass" -version = "3.2.0" +version = "3.2.1" dependencies = [ "byteorder", "dynasm", @@ -5442,7 +5448,7 @@ dependencies = [ [[package]] name = "wasmer-derive" -version = "3.2.0" +version = "3.2.1" dependencies = [ "compiletest_rs", "proc-macro-error", @@ -5454,7 +5460,7 @@ dependencies = [ [[package]] name = "wasmer-emscripten" -version = "3.2.0" +version = "3.2.1" dependencies = [ "byteorder", "getrandom", @@ -5496,7 +5502,7 @@ dependencies = [ [[package]] name = "wasmer-integration-tests-cli" -version = "3.2.0" +version = "3.2.1" dependencies = [ "anyhow", "assert_cmd 2.0.11", @@ -5520,11 +5526,11 @@ dependencies = [ [[package]] name = "wasmer-integration-tests-ios" -version = "3.2.0" +version = "3.2.1" [[package]] name = "wasmer-middlewares" -version = "3.2.0" +version = "3.2.1" dependencies = [ "wasmer", "wasmer-types", @@ -5533,7 +5539,7 @@ dependencies = [ [[package]] name = "wasmer-object" -version = "3.2.0" +version = "3.2.1" dependencies = [ "object 0.28.4", "thiserror", @@ -5542,9 +5548,9 @@ dependencies = [ [[package]] name = "wasmer-registry" -version = "4.2.0" +version = "4.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2466288c71defce98142c435a11a346222ce863ff7dcd3606da295205bbb55" +checksum = "a9b3beaca8e29bea7a295f186bb27bc9e8c8f43af7882c4b3fd931930b957e33" dependencies = [ "anyhow", "console", @@ -5578,7 +5584,7 @@ dependencies = [ [[package]] name = "wasmer-registry" -version = "4.4.0" +version = "4.4.1" dependencies = [ "anyhow", "console", @@ -5620,7 +5626,7 @@ dependencies = [ [[package]] name = "wasmer-sys-utils" -version = "0.3.0" +version = "0.3.1" dependencies = [ "libc", "region", @@ -5651,7 +5657,7 @@ dependencies = [ [[package]] name = "wasmer-types" -version = "3.2.0" +version = "3.2.1" dependencies = [ "bytecheck", "enum-iterator", @@ -5668,7 +5674,7 @@ dependencies = [ [[package]] name = "wasmer-vm" -version = "3.2.0" +version = "3.2.1" dependencies = [ "backtrace", "cc", @@ -5695,7 +5701,7 @@ dependencies = [ [[package]] name = "wasmer-wasix" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "async-trait", @@ -5756,7 +5762,7 @@ dependencies = [ [[package]] name = "wasmer-wasix-experimental-io-devices" -version = "0.3.0" +version = "0.3.1" dependencies = [ "minifb", "nix 0.25.1", @@ -5770,7 +5776,7 @@ dependencies = [ [[package]] name = "wasmer-wasix-types" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "bitflags", @@ -5792,7 +5798,7 @@ dependencies = [ [[package]] name = "wasmer-wasm-interface" -version = "3.2.0" +version = "3.2.1" dependencies = [ "bincode", "either", @@ -5804,7 +5810,7 @@ dependencies = [ [[package]] name = "wasmer-wast" -version = "3.2.0" +version = "3.2.1" dependencies = [ "anyhow", "serde", @@ -5819,7 +5825,7 @@ dependencies = [ [[package]] name = "wasmer-workspace" -version = "3.2.0" +version = "3.2.1" dependencies = [ "anyhow", "build-deps", diff --git a/Cargo.toml b/Cargo.toml index d995d385862..2f42bd8e0c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-workspace" -version = "3.2.0" +version = "3.2.1" description = "Wasmer workspace" authors = ["Wasmer Engineering Team "] repository = "https://github.com/wasmerio/wasmer" @@ -10,20 +10,20 @@ publish = false autoexamples = false [dependencies] -wasmer = { version = "=3.2.0", path = "lib/api", default-features = false } -wasmer-compiler = { version = "=3.2.0", path = "lib/compiler", features = [ +wasmer = { version = "=3.2.1", path = "lib/api", default-features = false } +wasmer-compiler = { version = "=3.2.1", path = "lib/compiler", features = [ "compiler", ] } -wasmer-compiler-cranelift = { version = "=3.2.0", path = "lib/compiler-cranelift", optional = true } -wasmer-compiler-singlepass = { version = "=3.2.0", path = "lib/compiler-singlepass", optional = true } -wasmer-compiler-llvm = { version = "=3.2.0", path = "lib/compiler-llvm", optional = true } -wasmer-emscripten = { version = "=3.2.0", path = "lib/emscripten", optional = true } +wasmer-compiler-cranelift = { version = "=3.2.1", path = "lib/compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "=3.2.1", path = "lib/compiler-singlepass", optional = true } +wasmer-compiler-llvm = { version = "=3.2.1", path = "lib/compiler-llvm", optional = true } +wasmer-emscripten = { version = "=3.2.1", path = "lib/emscripten", optional = true } wasmer-wasix = { version = "0.3.0", path = "lib/wasi", optional = true } -wasmer-wast = { version = "=3.2.0", path = "tests/lib/wast", optional = true } -wasi-test-generator = { version = "=3.2.0", path = "tests/wasi-wast", optional = true } -wasmer-cache = { version = "=3.2.0", path = "lib/cache", optional = true } -wasmer-types = { version = "=3.2.0", path = "lib/types" } -wasmer-middlewares = { version = "=3.2.0", path = "lib/middlewares", optional = true } +wasmer-wast = { version = "=3.2.1", path = "tests/lib/wast", optional = true } +wasi-test-generator = { version = "=3.2.1", path = "tests/wasi-wast", optional = true } +wasmer-cache = { version = "=3.2.1", path = "lib/cache", optional = true } +wasmer-types = { version = "=3.2.1", path = "lib/types" } +wasmer-middlewares = { version = "=3.2.1", path = "lib/middlewares", optional = true } cfg-if = "1.0" [workspace] @@ -75,7 +75,7 @@ glob = "0.3" rustc_version = "0.4" [dev-dependencies] -wasmer = { version = "=3.2.0", path = "lib/api", default-features = false, features = [ +wasmer = { version = "=3.2.1", path = "lib/api", default-features = false, features = [ "cranelift", ] } anyhow = "1.0" diff --git a/lib/api/Cargo.toml b/lib/api/Cargo.toml index a1b710ae50a..810e7079c6a 100644 --- a/lib/api/Cargo.toml +++ b/lib/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer" -version = "3.2.0" +version = "3.2.1" description = "High-performance WebAssembly runtime" categories = ["wasm"] keywords = ["wasm", "webassembly", "runtime", "vm"] @@ -35,15 +35,15 @@ tracing = { version = "0.1", optional = true } # Dependencies and Development Dependencies for `sys`. [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # - Mandatory dependencies for `sys`. -wasmer-vm = { path = "../vm", version = "=3.2.0" } -wasmer-compiler = { path = "../compiler", version = "=3.2.0" } -wasmer-derive = { path = "../derive", version = "=3.2.0" } -wasmer-types = { path = "../types", version = "=3.2.0" } +wasmer-vm = { path = "../vm", version = "=3.2.1" } +wasmer-compiler = { path = "../compiler", version = "=3.2.1" } +wasmer-derive = { path = "../derive", version = "=3.2.1" } +wasmer-types = { path = "../types", version = "=3.2.1" } target-lexicon = { version = "0.12.2", default-features = false } # - Optional dependencies for `sys`. -wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.2.0", optional = true } -wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=3.2.0", optional = true } -wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=3.2.0", optional = true } +wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.2.1", optional = true } +wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=3.2.1", optional = true } +wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=3.2.1", optional = true } wasm-bindgen = { version = "0.2.74", optional = true } js-sys = { version = "0.3.51", optional = true } @@ -56,17 +56,17 @@ winapi = "0.3" wat = "1.0" tempfile = "3.4.0" anyhow = "1.0" -macro-wasmer-universal-test = { version = "3.2.0", path = "./macro-wasmer-universal-test" } +macro-wasmer-universal-test = { version = "3.2.1", 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 = "=3.2.0", default-features = false, features = ["std"] } +wasmer-types = { path = "../types", version = "=3.2.1", default-features = false, features = ["std"] } wasm-bindgen = "0.2.74" wasm-bindgen-downcast = { version = "0.1.1" } js-sys = "0.3.51" #web-sys = { version = "0.3.51", features = [ "console" ] } -wasmer-derive = { path = "../derive", version = "=3.2.0" } +wasmer-derive = { path = "../derive", version = "=3.2.1" } # - Optional dependencies for `js`. wasmparser = { version = "0.95", default-features = false, optional = true } hashbrown = { version = "0.11", optional = true } @@ -78,7 +78,7 @@ serde = { version = "1.0", features = ["derive"] } wat = "1.0" anyhow = "1.0" wasm-bindgen-test = "0.3.0" -macro-wasmer-universal-test = { version = "3.2.0", path = "./macro-wasmer-universal-test" } +macro-wasmer-universal-test = { version = "3.2.1", 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 eef994d33b6..2309edf59f9 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 = "3.2.0" +version = "3.2.1" 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 1a47a86de2d..cb31bdb4c4b 100644 --- a/lib/c-api/Cargo.toml +++ b/lib/c-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-c-api" -version = "3.2.0" +version = "3.2.1" description = "Wasmer C API library" categories = ["wasm", "api-bindings"] keywords = ["wasm", "webassembly", "runtime"] @@ -22,14 +22,14 @@ 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 = "=3.2.0", path = "../api", default-features = false, package = "wasmer" } -wasmer-compiler = { version = "=3.2.0", path = "../compiler", optional = true } -wasmer-compiler-cranelift = { version = "=3.2.0", path = "../compiler-cranelift", optional = true } -wasmer-compiler-llvm = { version = "=3.2.0", path = "../compiler-llvm", optional = true } -wasmer-compiler-singlepass = { version = "=3.2.0", path = "../compiler-singlepass", optional = true } -wasmer-emscripten = { version = "=3.2.0", path = "../emscripten", optional = true } -wasmer-middlewares = { version = "=3.2.0", path = "../middlewares", optional = true } -wasmer-types = { version = "=3.2.0", path = "../types" } +wasmer-api = { version = "=3.2.1", path = "../api", default-features = false, package = "wasmer" } +wasmer-compiler = { version = "=3.2.1", path = "../compiler", optional = true } +wasmer-compiler-cranelift = { version = "=3.2.1", path = "../compiler-cranelift", optional = true } +wasmer-compiler-llvm = { version = "=3.2.1", path = "../compiler-llvm", optional = true } +wasmer-compiler-singlepass = { version = "=3.2.1", path = "../compiler-singlepass", optional = true } +wasmer-emscripten = { version = "=3.2.1", path = "../emscripten", optional = true } +wasmer-middlewares = { version = "=3.2.1", path = "../middlewares", optional = true } +wasmer-types = { version = "=3.2.1", path = "../types" } wasmer-wasix = { version = "0.3.0", path = "../wasi", features = ["host-fs", "host-vnet"], optional = true } webc = { version = "5.0", optional = true } virtual-fs = { version = "0.2.0", path = "../vfs", 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 1906625e0f5..6669eb2dc72 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 = "3.2.0" +version = "3.2.1" 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 c9aee8d9980..67652209c76 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 = "3.2.0" +version = "3.2.1" edition = "2021" license = "MIT" description = "wasmer-c-api-test-runner" diff --git a/lib/cache/Cargo.toml b/lib/cache/Cargo.toml index 1c60e037c64..d1544af922c 100644 --- a/lib/cache/Cargo.toml +++ b/lib/cache/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-cache" -version = "3.2.0" +version = "3.2.1" description = "Cache system for Wasmer WebAssembly runtime" categories = ["wasm", "caching"] keywords = ["wasm", "webassembly", "cache"] @@ -11,7 +11,7 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer = { path = "../api", version = "=3.2.0", default-features = false } +wasmer = { path = "../api", version = "=3.2.1", default-features = false } hex = "0.4" thiserror = "1" blake3 = "1.0" @@ -20,7 +20,7 @@ blake3 = "1.0" criterion = "0.3" tempfile = "3.4.0" rand = "0.8.3" -wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.2.0" } +wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.2.1" } [features] default = ["filesystem"] diff --git a/lib/cli-compiler/Cargo.toml b/lib/cli-compiler/Cargo.toml index 23155f5a42f..8209cbf0d9d 100644 --- a/lib/cli-compiler/Cargo.toml +++ b/lib/cli-compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-compiler-cli" -version = "3.2.0" +version = "3.2.1" description = "Wasmer Compiler CLI" categories = ["wasm", "command-line-interface"] keywords = ["wasm", "webassembly", "cli"] @@ -18,8 +18,8 @@ path = "src/bin/wasmer_compiler.rs" doc = false [dependencies] -wasmer-compiler = { version = "=3.2.0", path = "../compiler", features = ["compiler"] } -wasmer-types = { version = "=3.2.0", path = "../types" } +wasmer-compiler = { version = "=3.2.1", path = "../compiler", features = ["compiler"] } +wasmer-types = { version = "=3.2.1", path = "../types" } atty = "0.2" colored = "2.0" anyhow = "1.0" @@ -35,12 +35,12 @@ log = { version = "0.4", optional = true } target-lexicon = { version = "0.12", features = ["std"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -wasmer-compiler-singlepass = { version = "=3.2.0", path = "../compiler-singlepass", optional = true } -wasmer-compiler-cranelift = { version = "=3.2.0", path = "../compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "=3.2.1", path = "../compiler-singlepass", optional = true } +wasmer-compiler-cranelift = { version = "=3.2.1", path = "../compiler-cranelift", optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies] -wasmer-compiler-singlepass = { version = "=3.2.0", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] } -wasmer-compiler-cranelift = { version = "=3.2.0", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] } +wasmer-compiler-singlepass = { version = "=3.2.1", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] } +wasmer-compiler-cranelift = { version = "=3.2.1", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] } [target.'cfg(target_os = "linux")'.dependencies] unix_mode = "0.1.3" diff --git a/lib/cli/Cargo.toml b/lib/cli/Cargo.toml index 2defbc63727..2c626df9767 100644 --- a/lib/cli/Cargo.toml +++ b/lib/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-cli" -version = "3.2.0" +version = "3.2.1" description = "Wasmer CLI" categories = ["wasm", "command-line-interface"] keywords = ["wasm", "webassembly", "cli"] @@ -25,20 +25,20 @@ doc = false required-features = ["headless"] [dependencies] -wasmer = { version = "=3.2.0", path = "../api", default-features = false } -wasmer-compiler = { version = "=3.2.0", path = "../compiler", features = ["compiler"] } -wasmer-compiler-cranelift = { version = "=3.2.0", path = "../compiler-cranelift", optional = true } -wasmer-compiler-singlepass = { version = "=3.2.0", path = "../compiler-singlepass", optional = true } -wasmer-compiler-llvm = { version = "=3.2.0", path = "../compiler-llvm", optional = true } -wasmer-emscripten = { version = "=3.2.0", path = "../emscripten" } -wasmer-vm = { version = "=3.2.0", path = "../vm" } -wasmer-wasix = { version = "0.3.0", path = "../wasi", features = ["logging", "webc_runner", "webc_runner_rt_wcgi", "webc_runner_rt_wasi", "webc_runner_rt_emscripten", "host-fs"] } -wasmer-wasix-experimental-io-devices = { version = "0.3.0", path = "../wasi-experimental-io-devices", optional = true, features = ["link_external_libs"] } -wasmer-wast = { version = "=3.2.0", path = "../../tests/lib/wast", optional = true } -wasmer-cache = { version = "=3.2.0", path = "../cache", features = ["blake3-pure"] } -wasmer-types = { version = "=3.2.0", path = "../types", features = ["enable-serde"] } -wasmer-registry = { version = "4.4.0", path = "../registry", features = ["build-package"] } -wasmer-object = { version = "=3.2.0", path = "../object", optional = true } +wasmer = { version = "=3.2.1", path = "../api", default-features = false } +wasmer-compiler = { version = "=3.2.1", path = "../compiler", features = ["compiler"] } +wasmer-compiler-cranelift = { version = "=3.2.1", path = "../compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "=3.2.1", path = "../compiler-singlepass", optional = true } +wasmer-compiler-llvm = { version = "=3.2.1", path = "../compiler-llvm", optional = true } +wasmer-emscripten = { version = "=3.2.1", path = "../emscripten" } +wasmer-vm = { version = "=3.2.1", path = "../vm" } +wasmer-wasix = { version = "0.3.1", path = "../wasi", features = ["logging", "webc_runner", "webc_runner_rt_wcgi", "webc_runner_rt_wasi", "webc_runner_rt_emscripten", "host-fs"] } +wasmer-wasix-experimental-io-devices = { version = "0.3.1", path = "../wasi-experimental-io-devices", optional = true, features = ["link_external_libs"] } +wasmer-wast = { version = "=3.2.1", path = "../../tests/lib/wast", optional = true } +wasmer-cache = { version = "=3.2.1", path = "../cache", features = ["blake3-pure"] } +wasmer-types = { version = "=3.2.1", path = "../types", features = ["enable-serde"] } +wasmer-registry = { version = "4.4.1", path = "../registry", features = ["build-package"] } +wasmer-object = { version = "=3.2.1", path = "../object", optional = true } virtual-fs = { version = "0.2.0", path = "../vfs", default-features = false, features = ["host-fs"] } virtual-net = { version = "0.1.0", path = "../vnet" } atty = "0.2" diff --git a/lib/compiler-cranelift/Cargo.toml b/lib/compiler-cranelift/Cargo.toml index 17923949d0a..0493c15ff64 100644 --- a/lib/compiler-cranelift/Cargo.toml +++ b/lib/compiler-cranelift/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-compiler-cranelift" -version = "3.2.0" +version = "3.2.1" description = "Cranelift compiler for Wasmer WebAssembly runtime" categories = ["wasm"] keywords = ["wasm", "webassembly", "compiler", "cranelift"] @@ -12,8 +12,8 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-compiler = { path = "../compiler", version = "=3.2.0", features = ["translator", "compiler"], default-features = false } -wasmer-types = { path = "../types", version = "=3.2.0", default-features = false, features = ["std"] } +wasmer-compiler = { path = "../compiler", version = "=3.2.1", features = ["translator", "compiler"], default-features = false } +wasmer-types = { path = "../types", version = "=3.2.1", default-features = false, features = ["std"] } cranelift-entity = { version = "0.91.1", default-features = false } cranelift-codegen = { version = "0.91.1", default-features = false, features = ["x86", "arm64", "riscv64"] } cranelift-frontend = { version = "0.91.1", default-features = false } diff --git a/lib/compiler-llvm/Cargo.toml b/lib/compiler-llvm/Cargo.toml index 4f8ba28fe6b..0cf17687b6b 100644 --- a/lib/compiler-llvm/Cargo.toml +++ b/lib/compiler-llvm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-compiler-llvm" -version = "3.2.0" +version = "3.2.1" description = "LLVM compiler for Wasmer WebAssembly runtime" categories = ["wasm"] keywords = ["wasm", "webassembly", "compiler", "llvm"] @@ -12,11 +12,11 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-compiler = { path = "../compiler", version = "=3.2.0", features = [ +wasmer-compiler = { path = "../compiler", version = "=3.2.1", features = [ "translator", "compiler" ] } -wasmer-vm = { path = "../vm", version = "=3.2.0" } -wasmer-types = { path = "../types", version = "=3.2.0" } +wasmer-vm = { path = "../vm", version = "=3.2.1" } +wasmer-types = { path = "../types", version = "=3.2.1" } target-lexicon = { version = "0.12.2", default-features = false } smallvec = "1.6" object = { version = "0.28.3", default-features = false, features = ["read"] } diff --git a/lib/compiler-singlepass/Cargo.toml b/lib/compiler-singlepass/Cargo.toml index 1c2c37817ba..15baa5b9433 100644 --- a/lib/compiler-singlepass/Cargo.toml +++ b/lib/compiler-singlepass/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-compiler-singlepass" -version = "3.2.0" +version = "3.2.1" description = "Singlepass compiler for Wasmer WebAssembly runtime" categories = ["wasm"] keywords = ["wasm", "webassembly", "compiler", "singlepass"] @@ -12,8 +12,8 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-compiler = { path = "../compiler", version = "=3.2.0", features = ["translator", "compiler"], default-features = false } -wasmer-types = { path = "../types", version = "=3.2.0", default-features = false, features = ["std"] } +wasmer-compiler = { path = "../compiler", version = "=3.2.1", features = ["translator", "compiler"], default-features = false } +wasmer-types = { path = "../types", version = "=3.2.1", default-features = false, features = ["std"] } hashbrown = { version = "0.11", optional = true } gimli = { version = "0.26", optional = true } enumset = "1.0.2" diff --git a/lib/compiler/Cargo.toml b/lib/compiler/Cargo.toml index 4bf5e3b8bf7..bbb1a11ec89 100644 --- a/lib/compiler/Cargo.toml +++ b/lib/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-compiler" -version = "3.2.0" +version = "3.2.1" description = "Base compiler abstraction for Wasmer WebAssembly runtime" categories = ["wasm", "no-std"] keywords = ["wasm", "webassembly", "compiler"] @@ -11,8 +11,8 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-types = { path = "../types", version = "=3.2.0", default-features = false } -wasmer-object = { path = "../object", version = "=3.2.0", optional = true } +wasmer-types = { path = "../types", version = "=3.2.1", default-features = false } +wasmer-object = { path = "../object", version = "=3.2.1", optional = true } wasmparser = { version = "0.95", optional = true, default-features = false } enumset = "1.0.2" hashbrown = { version = "0.11", optional = true } @@ -32,7 +32,7 @@ leb128 = "0.2" enum-iterator = "0.7.0" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -wasmer-vm = { path = "../vm", version = "=3.2.0" } +wasmer-vm = { path = "../vm", version = "=3.2.1" } region = { version = "3.0" } [target.'cfg(target_os = "windows")'.dependencies] diff --git a/lib/derive/Cargo.toml b/lib/derive/Cargo.toml index 2f60d9c0345..b96e2d2e30f 100644 --- a/lib/derive/Cargo.toml +++ b/lib/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-derive" -version = "3.2.0" +version = "3.2.1" description = "Wasmer derive macros" authors = ["Wasmer Engineering Team "] repository = "https://github.com/wasmerio/wasmer" diff --git a/lib/emscripten/Cargo.toml b/lib/emscripten/Cargo.toml index a44d2250616..f848abe41e9 100644 --- a/lib/emscripten/Cargo.toml +++ b/lib/emscripten/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-emscripten" -version = "3.2.0" +version = "3.2.1" description = "Emscripten implementation library for Wasmer WebAssembly runtime" categories = ["wasm", "os"] keywords = ["wasm", "webassembly", "abi", "emscripten", "posix"] @@ -16,8 +16,8 @@ lazy_static = "1.4" libc = "^0.2" log = "0.4" time = { version = "0.2", features = ["std"] } -wasmer = { path = "../api", version = "=3.2.0", default-features = false } -wasmer-types = { path = "../types", version = "=3.2.0" } +wasmer = { path = "../api", version = "=3.2.1", default-features = false } +wasmer-types = { path = "../types", version = "=3.2.1" } [target.'cfg(windows)'.dependencies] getrandom = "0.2" diff --git a/lib/middlewares/Cargo.toml b/lib/middlewares/Cargo.toml index c17ddc0c91e..a129ac619d5 100644 --- a/lib/middlewares/Cargo.toml +++ b/lib/middlewares/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-middlewares" -version = "3.2.0" +version = "3.2.1" authors = ["Wasmer Engineering Team "] description = "A collection of various useful middlewares" license = "MIT OR Apache-2.0 WITH LLVM-exception" @@ -11,12 +11,12 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer = { path = "../api", version = "=3.2.0", default-features = false, features = ["compiler"] } -wasmer-types = { path = "../types", version = "=3.2.0" } -wasmer-vm = { path = "../vm", version = "=3.2.0" } +wasmer = { path = "../api", version = "=3.2.1", default-features = false, features = ["compiler"] } +wasmer-types = { path = "../types", version = "=3.2.1" } +wasmer-vm = { path = "../vm", version = "=3.2.1" } [dev-dependencies] -wasmer = { path = "../api", version = "=3.2.0", features = ["compiler"] } +wasmer = { path = "../api", version = "=3.2.1", features = ["compiler"] } [badges] maintenance = { status = "actively-developed" } diff --git a/lib/object/Cargo.toml b/lib/object/Cargo.toml index 287bdecc2d8..f0242a162b7 100644 --- a/lib/object/Cargo.toml +++ b/lib/object/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-object" -version = "3.2.0" +version = "3.2.1" description = "Wasmer Native Object generator" categories = ["wasm"] keywords = ["wasm", "webassembly"] @@ -11,6 +11,6 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-types = { path = "../types", version = "=3.2.0" } +wasmer-types = { path = "../types", version = "=3.2.1" } object = { version = "0.28.3", default-features = false, features = ["write"] } thiserror = "1.0" diff --git a/lib/registry/Cargo.toml b/lib/registry/Cargo.toml index 6f1b460f5a9..6461af721a8 100644 --- a/lib/registry/Cargo.toml +++ b/lib/registry/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-registry" -version = "4.4.0" +version = "4.4.1" edition = "2021" license = "MIT" description = "Crate to interact with the wasmer registry (wapm.io), download packages, etc." @@ -43,7 +43,7 @@ tempfile = "3.4.0" rusqlite = { version = "0.28.0", optional = true, features = ["bundled"] } time = { version = "0.3.17", default-features = false, features = ["parsing", "std", "formatting"], optional = true } indexmap = { version = "1.9.3", optional = true } -wasmer-wasm-interface = { version = "3.2.0", path = "../wasm-interface", optional = true } +wasmer-wasm-interface = { version = "3.2.1", path = "../wasm-interface", optional = true } wasmparser = { version = "0.51.4", optional = true } rpassword = { version = "7.2.0", optional = true } minisign = { version = "0.7.2", optional = true } diff --git a/lib/sys-utils/Cargo.toml b/lib/sys-utils/Cargo.toml index f97a65bb727..22ad67e3ddd 100644 --- a/lib/sys-utils/Cargo.toml +++ b/lib/sys-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-sys-utils" -version = "0.3.0" +version = "0.3.1" description = "Wasmer utilities for a sys environment." categories = ["wasm"] keywords = ["wasm", "webassembly"] @@ -10,16 +10,16 @@ license = "MIT OR Apache-2.0 WITH LLVM-exception" edition = "2018" [dependencies] -wasmer = { path = "../api", version = "=3.2.0", default-features = false, features = ["sys", "compiler"] } -wasmer-vm = { path = "../vm", version = "=3.2.0" } -wasmer-types = { path = "../types", version = "=3.2.0" } +wasmer = { path = "../api", version = "=3.2.1", default-features = false, features = ["sys", "compiler"] } +wasmer-vm = { path = "../vm", version = "=3.2.1" } +wasmer-types = { path = "../types", version = "=3.2.1" } region = { version = "3.0" } [target.'cfg(unix)'.dependencies] libc = { version = "^0.2", default-features = false } [dev-dependencies] -wasmer-wasix = { path = "../wasi", version = "0.3.0" } -wasmer = { path = "../api", version = "=3.2.0", default-features = false, features = ["sys", "compiler", "cranelift"] } +wasmer-wasix = { path = "../wasi", version = "0.3.1" } +wasmer = { path = "../api", version = "=3.2.1", default-features = false, features = ["sys", "compiler", "cranelift"] } tracing-subscriber = { version = "0.3.16", features = ["fmt"] } tracing = "0.1.37" diff --git a/lib/types/Cargo.toml b/lib/types/Cargo.toml index 8a6569bd19b..43240428d84 100644 --- a/lib/types/Cargo.toml +++ b/lib/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-types" -version = "3.2.0" +version = "3.2.1" description = "Wasmer Common Types" categories = ["wasm", "no-std", "data-structures"] keywords = ["wasm", "webassembly", "types"] diff --git a/lib/vm/Cargo.toml b/lib/vm/Cargo.toml index 635510c59dd..54ddac22b03 100644 --- a/lib/vm/Cargo.toml +++ b/lib/vm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-vm" -version = "3.2.0" +version = "3.2.1" description = "Runtime library support for Wasmer" categories = ["wasm"] keywords = ["wasm", "webassembly"] @@ -11,7 +11,7 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-types = { path = "../types", version = "=3.2.0" } +wasmer-types = { path = "../types", version = "=3.2.1" } libc = { version = "^0.2", default-features = false } memoffset = "0.8.0" indexmap = { version = "1.6" } diff --git a/lib/wai-bindgen-wasmer/Cargo.toml b/lib/wai-bindgen-wasmer/Cargo.toml index f61c7fc8ce0..754ab422eda 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.3.0" +version = "0.3.1" edition = "2018" categories = ["wasm", "os"] keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"] @@ -18,7 +18,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 = "=3.2.0", path = "../api", default-features = false } +wasmer = { version = "=3.2.1", path = "../api", default-features = false } [features] # Enables generated code to emit events via the `tracing` crate whenever wasm is diff --git a/lib/wasi-experimental-io-devices/Cargo.toml b/lib/wasi-experimental-io-devices/Cargo.toml index 1e88b0137c1..eca1a6d6a1e 100644 --- a/lib/wasi-experimental-io-devices/Cargo.toml +++ b/lib/wasi-experimental-io-devices/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasix-experimental-io-devices" -version = "0.3.0" +version = "0.3.1" description = "An experimental non-standard WASI/WASIX extension for graphics" categories = ["wasm"] keywords = ["wasm", "webassembly", "types"] @@ -14,8 +14,8 @@ edition = "2018" maintenance = { status = "experimental" } [dependencies] -wasmer-wasix = { version = "0.3.0", path = "../wasi", default-features=false } -wasmer-wasix-types = { path = "../wasi-types", version = "0.3.0" } +wasmer-wasix = { version = "0.3.1", path = "../wasi", default-features=false } +wasmer-wasix-types = { path = "../wasi-types", version = "0.3.1" } tracing = "0.1" minifb = { version = "0.24.0", optional = true } nix = "0.25.0" diff --git a/lib/wasi-types/Cargo.toml b/lib/wasi-types/Cargo.toml index 75f63414b8d..7bc9e64709c 100644 --- a/lib/wasi-types/Cargo.toml +++ b/lib/wasi-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasix-types" -version = "0.3.0" +version = "0.3.1" description = "WASI and WASIX types for Wasmer WebAssembly runtime" categories = ["wasm", "os"] keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"] @@ -13,9 +13,9 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wasmer = { default-features = false, path = "../api", version = "=3.2.0" } -wasmer-types = { path = "../types", version = "=3.2.0" } -wasmer-derive = { path = "../derive", version = "=3.2.0" } +wasmer = { default-features = false, path = "../api", version = "=3.2.1" } +wasmer-types = { path = "../types", version = "=3.2.1" } +wasmer-derive = { path = "../derive", version = "=3.2.1" } 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/wasi/Cargo.toml b/lib/wasi/Cargo.toml index f6f97382095..db0435a1c7f 100644 --- a/lib/wasi/Cargo.toml +++ b/lib/wasi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasix" -version = "0.3.0" +version = "0.3.1" description = "WASI and WASIX implementation library for Wasmer WebAssembly runtime" categories = ["wasm", "os"] keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"] @@ -15,12 +15,12 @@ cfg-if = "1.0" thiserror = "1" tracing = { version = "0.1" } getrandom = "0.2" -wasmer-wasix-types = { path = "../wasi-types", version = "0.3.0" } -wasmer-types = { path = "../types", version = "=3.2.0", default-features = false } -wasmer = { path = "../api", version = "=3.2.0", default-features = false, features = ["wat", "js-serializable-module"] } +wasmer-wasix-types = { path = "../wasi-types", version = "0.3.1" } +wasmer-types = { path = "../types", version = "=3.2.1", default-features = false } +wasmer = { path = "../api", version = "=3.2.1", default-features = false, features = ["wat", "js-serializable-module"] } virtual-fs = { path = "../vfs", version = "0.2.0", default-features = false, features = ["webc-fs"] } virtual-net = { path = "../vnet", version = "0.1.0", default-features = false } -wasmer-emscripten = { path = "../emscripten", version = "=3.2.0", optional = true } +wasmer-emscripten = { path = "../emscripten", version = "=3.2.1", optional = true } typetag = { version = "0.1", optional = true } serde = { version = "1.0", default-features = false, features = ["derive"] } bincode = { version = "1.3" } @@ -85,7 +85,7 @@ winapi = "0.3" wasm-bindgen = "0.2.74" [dev-dependencies] -wasmer = { path = "../api", version = "=3.2.0", default-features = false, features = ["wat", "js-serializable-module"] } +wasmer = { path = "../api", version = "=3.2.1", default-features = false, features = ["wat", "js-serializable-module"] } tokio = { version = "1", features = [ "sync", "macros", "rt" ], default_features = false } tempfile = "3.4.0" @@ -95,7 +95,7 @@ tracing-wasm = "0.2" [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] tracing-subscriber = { version = "^0.2" } -wasmer = { path = "../api", version = "=3.2.0", default-features = false, features = ["wat", "js-serializable-module", "cranelift"] } +wasmer = { path = "../api", version = "=3.2.1", default-features = false, features = ["wat", "js-serializable-module", "cranelift"] } [features] default = ["sys-default"] diff --git a/lib/wasm-interface/Cargo.toml b/lib/wasm-interface/Cargo.toml index f94855b7fad..6f2c161c17a 100644 --- a/lib/wasm-interface/Cargo.toml +++ b/lib/wasm-interface/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasm-interface" -version = "3.2.0" +version = "3.2.1" authors = ["The Wasmer Engineering Team "] edition = "2018" repository = "https://github.com/wasmerio/wapm-cli" diff --git a/scripts/update-version.py b/scripts/update-version.py index eb446aaa329..db9db06c844 100644 --- a/scripts/update-version.py +++ b/scripts/update-version.py @@ -1,7 +1,7 @@ #!/usr/bin/python -PREVIOUS_VERSION='3.2.0-beta.2' -NEXT_VERSION='3.2.0' +PREVIOUS_VERSION='3.2.0' +NEXT_VERSION='3.2.1' import os import re diff --git a/scripts/windows-installer/wasmer.iss b/scripts/windows-installer/wasmer.iss index c581c6b91fa..c39fe59dd82 100644 --- a/scripts/windows-installer/wasmer.iss +++ b/scripts/windows-installer/wasmer.iss @@ -1,6 +1,6 @@ [Setup] AppName=Wasmer -AppVersion=3.2.0 +AppVersion=3.2.1 DefaultDirName={pf}\Wasmer DefaultGroupName=Wasmer Compression=lzma2 diff --git a/tests/integration/cli/Cargo.toml b/tests/integration/cli/Cargo.toml index 887bc0f7b7a..71358147eb2 100644 --- a/tests/integration/cli/Cargo.toml +++ b/tests/integration/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-integration-tests-cli" -version = "3.2.0" +version = "3.2.1" 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 29201dbcb32..519d98724c0 100644 --- a/tests/integration/ios/Cargo.toml +++ b/tests/integration/ios/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-integration-tests-ios" -version = "3.2.0" +version = "3.2.1" 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 86650cd6dd0..24c1b76e70c 100644 --- a/tests/lib/wast/Cargo.toml +++ b/tests/lib/wast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wast" -version = "3.2.0" +version = "3.2.1" authors = ["Wasmer Engineering Team "] description = "wast testing support for wasmer" license = "MIT OR Apache-2.0 WITH LLVM-exception" @@ -12,7 +12,7 @@ edition = "2018" [dependencies] anyhow = "1.0" -wasmer = { path = "../../../lib/api", version = "=3.2.0", default-features = false } +wasmer = { path = "../../../lib/api", version = "=3.2.1", default-features = false } wasmer-wasix = { path = "../../../lib/wasi", version = "0.3.0" } virtual-fs = { path = "../../../lib/vfs", version = "0.2.0" } wast = "38.0" diff --git a/tests/wasi-wast/Cargo.toml b/tests/wasi-wast/Cargo.toml index e3a6fce6ee8..77159773e99 100644 --- a/tests/wasi-wast/Cargo.toml +++ b/tests/wasi-wast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasi-test-generator" -version = "3.2.0" +version = "3.2.1" description = "Tests for our WASI implementation" license = "MIT" authors = ["Wasmer Engineering Team "]