Skip to content

Commit 33a39ff

Browse files
authored
Bump to 0.12.0 (#997)
* Bump to 0.12.0 * Another lockfile update
1 parent c8ab1e2 commit 33a39ff

File tree

27 files changed

+84
-84
lines changed

27 files changed

+84
-84
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmtime-cli"
3-
version = "0.9.0"
3+
version = "0.12.0"
44
authors = ["The Wasmtime Project Developers"]
55
description = "Command-line interface for Wasmtime"
66
license = "Apache-2.0 WITH LLVM-exception"

crates/api/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmtime"
3-
version = "0.9.0"
3+
version = "0.12.0"
44
authors = ["The Wasmtime Project Developers"]
55
description = "High-level API to expose the Wasmtime runtime"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -9,9 +9,9 @@ readme = "README.md"
99
edition = "2018"
1010

1111
[dependencies]
12-
wasmtime-runtime = { path = "../runtime", version = "0.9.0" }
13-
wasmtime-environ = { path = "../environ", version = "0.9.0" }
14-
wasmtime-jit = { path = "../jit", version = "0.9.0" }
12+
wasmtime-runtime = { path = "../runtime", version = "0.12.0" }
13+
wasmtime-environ = { path = "../environ", version = "0.12.0" }
14+
wasmtime-jit = { path = "../jit", version = "0.12.0" }
1515
wasmtime-profiling = { path = "../profiling" }
1616
wasmparser = "0.51.2"
1717
target-lexicon = { version = "0.10.0", default-features = false }
@@ -29,7 +29,7 @@ winapi = "0.3.7"
2929

3030
[dev-dependencies]
3131
# for wasmtime.rs
32-
wasi-common = { path = "../wasi-common", version = "0.9.0" }
32+
wasi-common = { path = "../wasi-common", version = "0.12.0" }
3333
pretty_env_logger = "0.3.0"
3434
rayon = "1.2.1"
3535
file-per-thread-logger = "0.1.1"

crates/c-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmtime-c-api"
3-
version = "0.9.0"
3+
version = "0.12.0"
44
authors = ["The Wasmtime Project Developers"]
55
description = "C API to expose the Wasmtime runtime"
66
license = "Apache-2.0 WITH LLVM-exception"

crates/debug/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmtime-debug"
3-
version = "0.9.0"
3+
version = "0.12.0"
44
authors = ["The Wasmtime Project Developers"]
55
description = "Debug utils for WebAsssembly code in Cranelift"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -15,7 +15,7 @@ edition = "2018"
1515
gimli = "0.20.0"
1616
wasmparser = "0.51.2"
1717
faerie = "0.14.0"
18-
wasmtime-environ = { path = "../environ", version = "0.9.0" }
18+
wasmtime-environ = { path = "../environ", version = "0.12.0" }
1919
target-lexicon = { version = "0.10.0", default-features = false }
2020
anyhow = "1.0"
2121
thiserror = "1.0.4"

crates/environ/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmtime-environ"
3-
version = "0.9.0"
3+
version = "0.12.0"
44
authors = ["The Wasmtime Project Developers"]
55
description = "Standalone environment support for WebAsssembly code in Cranelift"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -17,7 +17,7 @@ cranelift-codegen = { version = "0.59.0", features = ["enable-serde"] }
1717
cranelift-entity = { version = "0.59.0", features = ["enable-serde"] }
1818
cranelift-wasm = { version = "0.59.0", features = ["enable-serde"] }
1919
wasmparser = "0.51.2"
20-
lightbeam = { path = "../lightbeam", optional = true, version = "0.9.0" }
20+
lightbeam = { path = "../lightbeam", optional = true, version = "0.12.0" }
2121
indexmap = "1.0.2"
2222
rayon = "1.2.1"
2323
thiserror = "1.0.4"

crates/fuzzing/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Fuzzing infrastructure for Wasmtime"
44
edition = "2018"
55
name = "wasmtime-fuzzing"
66
publish = false
7-
version = "0.9.0"
7+
version = "0.12.0"
88

99
[dependencies]
1010
anyhow = "1.0.22"
@@ -14,7 +14,7 @@ env_logger = "0.7.1"
1414
log = "0.4.8"
1515
wasmparser = "0.51.2"
1616
wasmprinter = "0.2.1"
17-
wasmtime = { path = "../api", version = "0.9.0" }
17+
wasmtime = { path = "../api", version = "0.12.0" }
1818

1919
[dev-dependencies]
2020
wat = "1.0"

crates/interface-types/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmtime-interface-types"
3-
version = "0.9.0"
3+
version = "0.12.0"
44
authors = ["The Wasmtime Project Developers"]
55
description = "Support for wasm interface types with wasmtime"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -15,11 +15,11 @@ anyhow = "1.0.19"
1515
walrus = "0.15"
1616
wasmparser = "0.51.2"
1717
wasm-webidl-bindings = "0.8"
18-
wasmtime = { path = "../api", version = "0.9.0" }
19-
wasmtime-jit = { path = "../jit", version = "0.9.0" }
20-
wasmtime-environ = { path = "../environ", version = "0.9.0" }
21-
wasmtime-runtime = { path = "../runtime", version = "0.9.0" }
22-
wasmtime-wasi = { path = "../wasi", version = "0.9.0" }
18+
wasmtime = { path = "../api", version = "0.12.0" }
19+
wasmtime-jit = { path = "../jit", version = "0.12.0" }
20+
wasmtime-environ = { path = "../environ", version = "0.12.0" }
21+
wasmtime-runtime = { path = "../runtime", version = "0.12.0" }
22+
wasmtime-wasi = { path = "../wasi", version = "0.12.0" }
2323

2424
[badges]
2525
maintenance = { status = "actively-developed" }

crates/jit/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmtime-jit"
3-
version = "0.9.0"
3+
version = "0.12.0"
44
authors = ["The Wasmtime Project Developers"]
55
description = "JIT-style execution for WebAsssembly code in Cranelift"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -16,9 +16,9 @@ cranelift-entity = { version = "0.59.0", features = ["enable-serde"] }
1616
cranelift-wasm = { version = "0.59.0", features = ["enable-serde"] }
1717
cranelift-native = "0.59.0"
1818
cranelift-frontend = "0.59.0"
19-
wasmtime-environ = { path = "../environ", version = "0.9.0" }
20-
wasmtime-runtime = { path = "../runtime", version = "0.9.0" }
21-
wasmtime-debug = { path = "../debug", version = "0.9.0" }
19+
wasmtime-environ = { path = "../environ", version = "0.12.0" }
20+
wasmtime-runtime = { path = "../runtime", version = "0.12.0" }
21+
wasmtime-debug = { path = "../debug", version = "0.12.0" }
2222
wasmtime-profiling = { path = "../profiling" }
2323
region = "2.0.0"
2424
thiserror = "1.0.4"

crates/lightbeam/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lightbeam"
3-
version = "0.9.0"
3+
version = "0.12.0"
44
authors = ["The Lightbeam Project Developers"]
55
description = "An optimising one-pass streaming compiler for WebAssembly"
66
license = "Apache-2.0 WITH LLVM-exception"

0 commit comments

Comments
 (0)