Skip to content

Commit 823b11f

Browse files
bors[bot]Felix Schüttsyrusakbaryfschutt
authored
Merge #3358
3358: Release 3.0.1 r=fschutt a=fschutt [bot] Release wasmer version 3.0.1 Co-authored-by: Felix Schütt <felix@wasmer.io> Co-authored-by: Syrus Akbary <me@syrusakbary.com> Co-authored-by: Felix Schütt <12084016+fschutt@users.noreply.github.com>
2 parents 70ece9f + eb525c5 commit 823b11f

35 files changed

Lines changed: 1172 additions & 1156 deletions

File tree

CHANGELOG.md

Lines changed: 1015 additions & 999 deletions
Large diffs are not rendered by default.

Cargo.lock

Lines changed: 31 additions & 31 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.0"
3+
version = "3.0.1"
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.0", path = "lib/api", default-features = false }
14-
wasmer-compiler = { version = "=3.0.0", path = "lib/compiler", features = ["compiler"] }
15-
wasmer-compiler-cranelift = { version = "=3.0.0", path = "lib/compiler-cranelift", optional = true }
16-
wasmer-compiler-singlepass = { version = "=3.0.0", path = "lib/compiler-singlepass", optional = true }
17-
wasmer-compiler-llvm = { version = "=3.0.0", path = "lib/compiler-llvm", optional = true }
18-
wasmer-emscripten = { version = "=3.0.0", path = "lib/emscripten", optional = true }
19-
wasmer-wasi = { version = "=3.0.0", path = "lib/wasi", optional = true }
20-
wasmer-wast = { version = "=3.0.0", path = "tests/lib/wast", optional = true }
21-
wasi-test-generator = { version = "=3.0.0", path = "tests/wasi-wast", optional = true }
22-
wasmer-cache = { version = "=3.0.0", path = "lib/cache", optional = true }
23-
wasmer-types = { version = "=3.0.0", path = "lib/types" }
24-
wasmer-middlewares = { version = "=3.0.0", path = "lib/middlewares", optional = true }
13+
wasmer = { version = "=3.0.1", path = "lib/api", default-features = false }
14+
wasmer-compiler = { version = "=3.0.1", path = "lib/compiler", features = ["compiler"] }
15+
wasmer-compiler-cranelift = { version = "=3.0.1", path = "lib/compiler-cranelift", optional = true }
16+
wasmer-compiler-singlepass = { version = "=3.0.1", path = "lib/compiler-singlepass", optional = true }
17+
wasmer-compiler-llvm = { version = "=3.0.1", path = "lib/compiler-llvm", optional = true }
18+
wasmer-emscripten = { version = "=3.0.1", path = "lib/emscripten", optional = true }
19+
wasmer-wasi = { version = "=3.0.1", path = "lib/wasi", optional = true }
20+
wasmer-wast = { version = "=3.0.1", path = "tests/lib/wast", optional = true }
21+
wasi-test-generator = { version = "=3.0.1", path = "tests/wasi-wast", optional = true }
22+
wasmer-cache = { version = "=3.0.1", path = "lib/cache", optional = true }
23+
wasmer-types = { version = "=3.0.1", path = "lib/types" }
24+
wasmer-middlewares = { version = "=3.0.1", 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.0", path = "lib/api", default-features = false, features = ["cranelift"] }
71+
wasmer = { version = "=3.0.1", 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.0"
3+
version = "3.0.1"
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.0" }
38-
wasmer-compiler = { path = "../compiler", version = "=3.0.0" }
39-
wasmer-derive = { path = "../derive", version = "=3.0.0" }
40-
wasmer-types = { path = "../types", version = "=3.0.0" }
37+
wasmer-vm = { path = "../vm", version = "=3.0.1" }
38+
wasmer-compiler = { path = "../compiler", version = "=3.0.1" }
39+
wasmer-derive = { path = "../derive", version = "=3.0.1" }
40+
wasmer-types = { path = "../types", version = "=3.0.1" }
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.0", optional = true }
44-
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=3.0.0", optional = true }
45-
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=3.0.0", optional = true }
43+
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.0.1", optional = true }
44+
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=3.0.1", optional = true }
45+
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=3.0.1", optional = true }
4646

4747
wasm-bindgen = { version = "0.2.74", optional = true }
4848
js-sys = { version = "0.3.51", optional = true }
@@ -55,16 +55,16 @@ winapi = "0.3"
5555
wat = "1.0"
5656
tempfile = "3.1"
5757
anyhow = "1.0"
58-
macro-wasmer-universal-test = { version = "3.0.0", path = "./macro-wasmer-universal-test" }
58+
macro-wasmer-universal-test = { version = "3.0.1", 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.0", default-features = false, features = ["std"] }
63+
wasmer-types = { path = "../types", version = "=3.0.1", default-features = false, features = ["std"] }
6464
wasm-bindgen = "0.2.74"
6565
js-sys = "0.3.51"
6666
#web-sys = { version = "0.3.51", features = [ "console" ] }
67-
wasmer-derive = { path = "../derive", version = "=3.0.0" }
67+
wasmer-derive = { path = "../derive", version = "=3.0.1" }
6868
# - Optional dependencies for `js`.
6969
wasmparser = { version = "0.83", default-features = false, optional = true }
7070
hashbrown = { version = "0.11", optional = true }
@@ -76,7 +76,7 @@ serde = { version = "1.0", features = ["derive"] }
7676
wat = "1.0"
7777
anyhow = "1.0"
7878
wasm-bindgen-test = "0.3.0"
79-
macro-wasmer-universal-test = { version = "3.0.0", path = "./macro-wasmer-universal-test" }
79+
macro-wasmer-universal-test = { version = "3.0.1", path = "./macro-wasmer-universal-test" }
8080

8181
# Specific to `js`.
8282
#

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.0"
3+
version = "3.0.1"
44
edition = "2021"
55
license = "MIT"
66
description = "Universal test macro for wasmer-test"

0 commit comments

Comments
 (0)