Skip to content

Commit d458507

Browse files
author
Felix Schütt
committed
Release 3.1.0
1 parent 21c950f commit d458507

34 files changed

Lines changed: 205 additions & 206 deletions

File tree

Cargo.lock

Lines changed: 79 additions & 80 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-workspace"
3-
version = "3.0.2"
3+
version = "3.1.0"
44
description = "Wasmer workspace"
55
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
66
repository = "https://github.com/wasmerio/wasmer"
@@ -10,18 +10,18 @@ publish = false
1010
autoexamples = false
1111

1212
[dependencies]
13-
wasmer = { version = "=3.0.2", path = "lib/api", default-features = false }
14-
wasmer-compiler = { version = "=3.0.2", path = "lib/compiler", features = ["compiler"] }
15-
wasmer-compiler-cranelift = { version = "=3.0.2", path = "lib/compiler-cranelift", optional = true }
16-
wasmer-compiler-singlepass = { version = "=3.0.2", path = "lib/compiler-singlepass", optional = true }
17-
wasmer-compiler-llvm = { version = "=3.0.2", path = "lib/compiler-llvm", optional = true }
18-
wasmer-emscripten = { version = "=3.0.2", path = "lib/emscripten", optional = true }
19-
wasmer-wasi = { version = "=3.0.2", path = "lib/wasi", optional = true }
20-
wasmer-wast = { version = "=3.0.2", path = "tests/lib/wast", optional = true }
21-
wasi-test-generator = { version = "=3.0.2", path = "tests/wasi-wast", optional = true }
22-
wasmer-cache = { version = "=3.0.2", path = "lib/cache", optional = true }
23-
wasmer-types = { version = "=3.0.2", path = "lib/types" }
24-
wasmer-middlewares = { version = "=3.0.2", path = "lib/middlewares", optional = true }
13+
wasmer = { version = "=3.1.0", path = "lib/api", default-features = false }
14+
wasmer-compiler = { version = "=3.1.0", path = "lib/compiler", features = ["compiler"] }
15+
wasmer-compiler-cranelift = { version = "=3.1.0", path = "lib/compiler-cranelift", optional = true }
16+
wasmer-compiler-singlepass = { version = "=3.1.0", path = "lib/compiler-singlepass", optional = true }
17+
wasmer-compiler-llvm = { version = "=3.1.0", path = "lib/compiler-llvm", optional = true }
18+
wasmer-emscripten = { version = "=3.1.0", path = "lib/emscripten", optional = true }
19+
wasmer-wasi = { version = "=3.1.0", path = "lib/wasi", optional = true }
20+
wasmer-wast = { version = "=3.1.0", path = "tests/lib/wast", optional = true }
21+
wasi-test-generator = { version = "=3.1.0", path = "tests/wasi-wast", optional = true }
22+
wasmer-cache = { version = "=3.1.0", path = "lib/cache", optional = true }
23+
wasmer-types = { version = "=3.1.0", path = "lib/types" }
24+
wasmer-middlewares = { version = "=3.1.0", path = "lib/middlewares", optional = true }
2525
cfg-if = "1.0"
2626

2727
[workspace]
@@ -68,7 +68,7 @@ glob = "0.3"
6868
rustc_version = "0.4"
6969

7070
[dev-dependencies]
71-
wasmer = { version = "=3.0.2", path = "lib/api", default-features = false, features = ["cranelift"] }
71+
wasmer = { version = "=3.1.0", path = "lib/api", default-features = false, features = ["cranelift"] }
7272
anyhow = "1.0"
7373
criterion = "0.3"
7474
lazy_static = "1.4"

lib/api/Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer"
3-
version = "3.0.2"
3+
version = "3.1.0"
44
description = "High-performance WebAssembly runtime"
55
categories = ["wasm"]
66
keywords = ["wasm", "webassembly", "runtime", "vm"]
@@ -34,15 +34,15 @@ tracing = { version = "0.1", optional = true }
3434
# Dependencies and Development Dependencies for `sys`.
3535
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
3636
# - Mandatory dependencies for `sys`.
37-
wasmer-vm = { path = "../vm", version = "=3.0.2" }
38-
wasmer-compiler = { path = "../compiler", version = "=3.0.2" }
39-
wasmer-derive = { path = "../derive", version = "=3.0.2" }
40-
wasmer-types = { path = "../types", version = "=3.0.2" }
37+
wasmer-vm = { path = "../vm", version = "=3.1.0" }
38+
wasmer-compiler = { path = "../compiler", version = "=3.1.0" }
39+
wasmer-derive = { path = "../derive", version = "=3.1.0" }
40+
wasmer-types = { path = "../types", version = "=3.1.0" }
4141
target-lexicon = { version = "0.12.2", default-features = false }
4242
# - Optional dependencies for `sys`.
43-
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.0.2", optional = true }
44-
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=3.0.2", optional = true }
45-
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=3.0.2", optional = true }
43+
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.1.0", optional = true }
44+
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=3.1.0", optional = true }
45+
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=3.1.0", optional = true }
4646

4747
wasm-bindgen = { version = "0.2.74", optional = true }
4848
js-sys = { version = "0.3.51", optional = true }
@@ -55,17 +55,17 @@ winapi = "0.3"
5555
wat = "1.0"
5656
tempfile = "3.1"
5757
anyhow = "1.0"
58-
macro-wasmer-universal-test = { version = "3.0.2", path = "./macro-wasmer-universal-test" }
58+
macro-wasmer-universal-test = { version = "3.1.0", path = "./macro-wasmer-universal-test" }
5959

6060
# Dependencies and Develoment Dependencies for `js`.
6161
[target.'cfg(target_arch = "wasm32")'.dependencies]
6262
# - Mandatory dependencies for `js`.
63-
wasmer-types = { path = "../types", version = "=3.0.2", default-features = false, features = ["std"] }
63+
wasmer-types = { path = "../types", version = "=3.1.0", default-features = false, features = ["std"] }
6464
wasm-bindgen = "0.2.74"
6565
wasm-bindgen-downcast = { version = "0.1.1" }
6666
js-sys = "0.3.51"
6767
#web-sys = { version = "0.3.51", features = [ "console" ] }
68-
wasmer-derive = { path = "../derive", version = "=3.0.2" }
68+
wasmer-derive = { path = "../derive", version = "=3.1.0" }
6969
# - Optional dependencies for `js`.
7070
wasmparser = { version = "0.83", default-features = false, optional = true }
7171
hashbrown = { version = "0.11", optional = true }
@@ -77,7 +77,7 @@ serde = { version = "1.0", features = ["derive"] }
7777
wat = "1.0"
7878
anyhow = "1.0"
7979
wasm-bindgen-test = "0.3.0"
80-
macro-wasmer-universal-test = { version = "3.0.2", path = "./macro-wasmer-universal-test" }
80+
macro-wasmer-universal-test = { version = "3.1.0", path = "./macro-wasmer-universal-test" }
8181

8282
# Specific to `js`.
8383
#

lib/api/macro-wasmer-universal-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "macro-wasmer-universal-test"
3-
version = "3.0.2"
3+
version = "3.1.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Universal test macro for wasmer-test"

lib/c-api/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-c-api"
3-
version = "3.0.2"
3+
version = "3.1.0"
44
description = "Wasmer C API library"
55
categories = ["wasm", "api-bindings"]
66
keywords = ["wasm", "webassembly", "runtime"]
@@ -22,16 +22,16 @@ crate-type = ["staticlib", "cdylib"] #"cdylib", "rlib", "staticlib"]
2222
[dependencies]
2323
# We rename `wasmer` to `wasmer-api` to avoid the conflict with this
2424
# library name (see `[lib]`).
25-
wasmer-api = { version = "=3.0.2", path = "../api", default-features = false, features = ["sys"], package = "wasmer" }
26-
wasmer-compiler-cranelift = { version = "=3.0.2", path = "../compiler-cranelift", optional = true }
27-
wasmer-compiler-singlepass = { version = "=3.0.2", path = "../compiler-singlepass", optional = true }
28-
wasmer-compiler-llvm = { version = "=3.0.2", path = "../compiler-llvm", optional = true }
29-
wasmer-emscripten = { version = "=3.0.2", path = "../emscripten", optional = true }
30-
wasmer-compiler = { version = "=3.0.2", path = "../compiler" }
31-
wasmer-middlewares = { version = "=3.0.2", path = "../middlewares", optional = true }
32-
wasmer-wasi = { version = "=3.0.2", path = "../wasi", default-features = false, features = ["host-fs", "sys"], optional = true }
33-
wasmer-types = { version = "=3.0.2", path = "../types" }
34-
wasmer-vfs = { version = "=3.0.2", path = "../vfs", optional = true, default-features = false, features = ["static-fs"] }
25+
wasmer-api = { version = "=3.1.0", path = "../api", default-features = false, features = ["sys"], package = "wasmer" }
26+
wasmer-compiler-cranelift = { version = "=3.1.0", path = "../compiler-cranelift", optional = true }
27+
wasmer-compiler-singlepass = { version = "=3.1.0", path = "../compiler-singlepass", optional = true }
28+
wasmer-compiler-llvm = { version = "=3.1.0", path = "../compiler-llvm", optional = true }
29+
wasmer-emscripten = { version = "=3.1.0", path = "../emscripten", optional = true }
30+
wasmer-compiler = { version = "=3.1.0", path = "../compiler" }
31+
wasmer-middlewares = { version = "=3.1.0", path = "../middlewares", optional = true }
32+
wasmer-wasi = { version = "=3.1.0", path = "../wasi", default-features = false, features = ["host-fs", "sys"], optional = true }
33+
wasmer-types = { version = "=3.1.0", path = "../types" }
34+
wasmer-vfs = { version = "=3.1.0", path = "../vfs", optional = true, default-features = false, features = ["static-fs"] }
3535
webc = { version = "3.0.1", optional = true }
3636
enumset = "1.0.2"
3737
cfg-if = "1.0"

lib/c-api/examples/wasmer-capi-examples-runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-capi-examples-runner"
3-
version = "3.0.2"
3+
version = "3.1.0"
44
edition = "2021"
55
license = "MIT"
66
description = "wasmer-capi-examples-runner"

lib/c-api/tests/wasmer-c-api-test-runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-c-api-test-runner"
3-
version = "3.0.2"
3+
version = "3.1.0"
44
edition = "2021"
55
license = "MIT"
66
description = "wasmer-c-api-test-runner"

lib/cache/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-cache"
3-
version = "3.0.2"
3+
version = "3.1.0"
44
description = "Cache system for Wasmer WebAssembly runtime"
55
categories = ["wasm", "caching"]
66
keywords = ["wasm", "webassembly", "cache"]
@@ -11,7 +11,7 @@ readme = "README.md"
1111
edition = "2018"
1212

1313
[dependencies]
14-
wasmer = { path = "../api", version = "=3.0.2", default-features = false, features = ["sys"] }
14+
wasmer = { path = "../api", version = "=3.1.0", default-features = false, features = ["sys"] }
1515
hex = "0.4"
1616
thiserror = "1"
1717
blake3 = "1.0"
@@ -20,7 +20,7 @@ blake3 = "1.0"
2020
criterion = "0.3"
2121
tempfile = "3"
2222
rand = "0.8.3"
23-
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.0.2" }
23+
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.1.0" }
2424

2525
[features]
2626
default = ["wasmer/js-serializable-module", "wasmer/compiler", "filesystem"]

lib/cli-compiler/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-compiler-cli"
3-
version = "3.0.2"
3+
version = "3.1.0"
44
description = "Wasmer Compiler CLI"
55
categories = ["wasm", "command-line-interface"]
66
keywords = ["wasm", "webassembly", "cli"]
@@ -18,8 +18,8 @@ path = "src/bin/wasmer_compiler.rs"
1818
doc = false
1919

2020
[dependencies]
21-
wasmer-compiler = { version = "=3.0.2", path = "../compiler", features = ["compiler"] }
22-
wasmer-types = { version = "=3.0.2", path = "../types" }
21+
wasmer-compiler = { version = "=3.1.0", path = "../compiler", features = ["compiler"] }
22+
wasmer-types = { version = "=3.1.0", path = "../types" }
2323
atty = "0.2"
2424
colored = "2.0"
2525
anyhow = "1.0"
@@ -36,12 +36,12 @@ target-lexicon = { version = "0.12", features = ["std"] }
3636
tempfile = "3"
3737

3838
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
39-
wasmer-compiler-singlepass = { version = "=3.0.2", path = "../compiler-singlepass", optional = true }
40-
wasmer-compiler-cranelift = { version = "=3.0.2", path = "../compiler-cranelift", optional = true }
39+
wasmer-compiler-singlepass = { version = "=3.1.0", path = "../compiler-singlepass", optional = true }
40+
wasmer-compiler-cranelift = { version = "=3.1.0", path = "../compiler-cranelift", optional = true }
4141

4242
[target.'cfg(target_arch = "wasm32")'.dependencies]
43-
wasmer-compiler-singlepass = { version = "=3.0.2", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] }
44-
wasmer-compiler-cranelift = { version = "=3.0.2", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] }
43+
wasmer-compiler-singlepass = { version = "=3.1.0", path = "../compiler-singlepass", optional = true, default-features = false, features = ["wasm"] }
44+
wasmer-compiler-cranelift = { version = "=3.1.0", path = "../compiler-cranelift", optional = true, default-features = false, features = ["wasm"] }
4545

4646
[target.'cfg(target_os = "linux")'.dependencies]
4747
unix_mode = "0.1.3"

lib/cli/Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-cli"
3-
version = "3.0.2"
3+
version = "3.1.0"
44
description = "Wasmer CLI"
55
categories = ["wasm", "command-line-interface"]
66
keywords = ["wasm", "webassembly", "cli"]
@@ -25,21 +25,21 @@ doc = false
2525
required-features = ["headless"]
2626

2727
[dependencies]
28-
wasmer = { version = "=3.0.2", path = "../api", default-features = false }
29-
wasmer-compiler = { version = "=3.0.2", path = "../compiler", features = ["compiler", ] }
30-
wasmer-compiler-cranelift = { version = "=3.0.2", path = "../compiler-cranelift", optional = true }
31-
wasmer-compiler-singlepass = { version = "=3.0.2", path = "../compiler-singlepass", optional = true }
32-
wasmer-compiler-llvm = { version = "=3.0.2", path = "../compiler-llvm", optional = true }
33-
wasmer-emscripten = { version = "=3.0.2", path = "../emscripten", optional = true }
34-
wasmer-vm = { version = "=3.0.2", path = "../vm" }
35-
wasmer-wasi = { version = "=3.0.2", path = "../wasi", optional = true }
36-
wasmer-wasi-experimental-io-devices = { version = "=3.0.2", path = "../wasi-experimental-io-devices", optional = true, features = ["link_external_libs"] }
37-
wasmer-wast = { version = "=3.0.2", path = "../../tests/lib/wast", optional = true }
38-
wasmer-cache = { version = "=3.0.2", path = "../cache", optional = true }
39-
wasmer-types = { version = "=3.0.2", path = "../types" }
40-
wasmer-registry = { version = "=3.0.2", path = "../registry" }
41-
wasmer-object = { version = "=3.0.2", path = "../object", optional = true }
42-
wasmer-vfs = { version = "=3.0.2", path = "../vfs", default-features = false, features = ["host-fs"] }
28+
wasmer = { version = "=3.1.0", path = "../api", default-features = false }
29+
wasmer-compiler = { version = "=3.1.0", path = "../compiler", features = ["compiler", ] }
30+
wasmer-compiler-cranelift = { version = "=3.1.0", path = "../compiler-cranelift", optional = true }
31+
wasmer-compiler-singlepass = { version = "=3.1.0", path = "../compiler-singlepass", optional = true }
32+
wasmer-compiler-llvm = { version = "=3.1.0", path = "../compiler-llvm", optional = true }
33+
wasmer-emscripten = { version = "=3.1.0", path = "../emscripten", optional = true }
34+
wasmer-vm = { version = "=3.1.0", path = "../vm" }
35+
wasmer-wasi = { version = "=3.1.0", path = "../wasi", optional = true }
36+
wasmer-wasi-experimental-io-devices = { version = "=3.1.0", path = "../wasi-experimental-io-devices", optional = true, features = ["link_external_libs"] }
37+
wasmer-wast = { version = "=3.1.0", path = "../../tests/lib/wast", optional = true }
38+
wasmer-cache = { version = "=3.1.0", path = "../cache", optional = true }
39+
wasmer-types = { version = "=3.1.0", path = "../types" }
40+
wasmer-registry = { version = "=3.1.0", path = "../registry" }
41+
wasmer-object = { version = "=3.1.0", path = "../object", optional = true }
42+
wasmer-vfs = { version = "=3.1.0", path = "../vfs", default-features = false, features = ["host-fs"] }
4343
atty = "0.2"
4444
colored = "2.0"
4545
anyhow = "1.0"

0 commit comments

Comments
 (0)