Skip to content

Commit 737d7d0

Browse files
committed
Bump the version to 0.8.0.
1 parent 8dbaacf commit 737d7d0

File tree

23 files changed

+65
-65
lines changed

23 files changed

+65
-65
lines changed

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.7.0"
3+
version = "0.8.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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmtime"
3-
version = "0.7.0"
3+
version = "0.8.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"
@@ -18,9 +18,9 @@ cranelift-native = "0.50.0"
1818
cranelift-entity = { version = "0.50.0", features = ["enable-serde"] }
1919
cranelift-wasm = { version = "0.50.0", features = ["enable-serde"] }
2020
cranelift-frontend = "0.50.0"
21-
wasmtime-runtime = { path = "../runtime", version = "0.7.0" }
22-
wasmtime-environ = { path = "../environ", version = "0.7.0" }
23-
wasmtime-jit = { path = "../jit", version = "0.7.0" }
21+
wasmtime-runtime = { path = "../runtime", version = "0.8.0" }
22+
wasmtime-environ = { path = "../environ", version = "0.8.0" }
23+
wasmtime-jit = { path = "../jit", version = "0.8.0" }
2424
wasmparser = { version = "0.39.2", default-features = false }
2525
target-lexicon = { version = "0.9.0", default-features = false }
2626
anyhow = "1.0.19"
@@ -29,12 +29,12 @@ region = "2.0.0"
2929

3030
[dev-dependencies]
3131
# for wasmtime.rs
32-
wasi-common = { path = "../wasi-common", version = "0.7.0" }
32+
wasi-common = { path = "../wasi-common", version = "0.8.0" }
3333
docopt = "1.0.1"
3434
serde = { "version" = "1.0.94", features = ["derive"] }
3535
pretty_env_logger = "0.3.0"
36-
wasmtime-wast = { path = "../wast", version = "0.7.0" }
37-
wasmtime-wasi = { path = "../wasi", version = "0.7.0" }
36+
wasmtime-wast = { path = "../wast", version = "0.8.0" }
37+
wasmtime-wasi = { path = "../wasi", version = "0.8.0" }
3838
rayon = "1.1"
3939
file-per-thread-logger = "0.1.1"
4040
wat = "1.0"

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.7.0"
3+
version = "0.8.0"
44
authors = ["The Wasmtime Project Developers"]
55
description = "Debug utils for WebAsssembly code in Cranelift"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -18,7 +18,7 @@ cranelift-codegen = { version = "0.50.0", features = ["enable-serde"] }
1818
cranelift-entity = { version = "0.50.0", features = ["enable-serde"] }
1919
cranelift-wasm = { version = "0.50.0", features = ["enable-serde"] }
2020
faerie = "0.13.0"
21-
wasmtime-environ = { path = "../environ", version = "0.7.0" }
21+
wasmtime-environ = { path = "../environ", version = "0.8.0" }
2222
target-lexicon = { version = "0.9.0", default-features = false }
2323
anyhow = "1.0"
2424
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.7.0"
3+
version = "0.8.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"
@@ -16,7 +16,7 @@ cranelift-codegen = { version = "0.50.0", features = ["enable-serde"] }
1616
cranelift-entity = { version = "0.50.0", features = ["enable-serde"] }
1717
cranelift-wasm = { version = "0.50.0", features = ["enable-serde"] }
1818
wasmparser = "0.39.2"
19-
lightbeam = { path = "../lightbeam", version = "0.7.0", optional = true }
19+
lightbeam = { path = "../lightbeam", version = "0.8.0", optional = true }
2020
indexmap = "1.0.2"
2121
rayon = "1.2"
2222
thiserror = "1.0.4"

crates/interface-types/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-interface-types"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["The Wasmtime Project Developers"]
55
description = "Support for wasm interface types with wasmtime"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -16,10 +16,10 @@ cranelift-codegen = { version = "0.50.0", default-features = false }
1616
walrus = "0.13"
1717
wasmparser = { version = "0.39.2", default-features = false }
1818
wasm-webidl-bindings = "0.6"
19-
wasmtime = { path = "../api", version = "0.7.0" }
20-
wasmtime-jit = { path = "../jit", version = "0.7.0" }
21-
wasmtime-runtime = { path = "../runtime", version = "0.7.0" }
22-
wasmtime-wasi = { path = "../wasi", version = "0.7.0" }
19+
wasmtime = { path = "../api", version = "0.8.0" }
20+
wasmtime-jit = { path = "../jit", version = "0.8.0" }
21+
wasmtime-runtime = { path = "../runtime", version = "0.8.0" }
22+
wasmtime-wasi = { path = "../wasi", version = "0.8.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.7.0"
3+
version = "0.8.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"
@@ -15,9 +15,9 @@ cranelift-codegen = { version = "0.50.0", features = ["enable-serde"] }
1515
cranelift-entity = { version = "0.50.0", features = ["enable-serde"] }
1616
cranelift-wasm = { version = "0.50.0", features = ["enable-serde"] }
1717
cranelift-frontend = "0.50.0"
18-
wasmtime-environ = { path = "../environ", version = "0.7.0" }
19-
wasmtime-runtime = { path = "../runtime", version = "0.7.0" }
20-
wasmtime-debug = { path = "../debug", version = "0.7.0" }
18+
wasmtime-environ = { path = "../environ", version = "0.8.0" }
19+
wasmtime-runtime = { path = "../runtime", version = "0.8.0" }
20+
wasmtime-debug = { path = "../debug", version = "0.8.0" }
2121
region = "2.0.0"
2222
thiserror = "1.0.4"
2323
target-lexicon = { version = "0.9.0", default-features = false }

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.7.0"
3+
version = "0.8.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"

crates/misc/py/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmtime-py"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["The Wasmtime Project Developers"]
55
description = "Python extension for Wasmtime"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -20,12 +20,12 @@ cranelift-native = "0.50.0"
2020
cranelift-entity = "0.50.0"
2121
cranelift-wasm = "0.50.0"
2222
cranelift-frontend = "0.50.0"
23-
wasmtime = { path = "../../api", version = "0.7.0" }
24-
wasmtime-environ = { path = "../../environ", version = "0.7.0" }
25-
wasmtime-interface-types = { path = "../../interface-types", version = "0.7.0" }
26-
wasmtime-jit = { path = "../../jit", version = "0.7.0" }
27-
wasmtime-runtime = { path = "../../runtime", version = "0.7.0" }
28-
wasmtime-wasi = { path = "../../wasi", version = "0.7.0" }
23+
wasmtime = { path = "../../api", version = "0.8.0" }
24+
wasmtime-environ = { path = "../../environ", version = "0.8.0" }
25+
wasmtime-interface-types = { path = "../../interface-types", version = "0.8.0" }
26+
wasmtime-jit = { path = "../../jit", version = "0.8.0" }
27+
wasmtime-runtime = { path = "../../runtime", version = "0.8.0" }
28+
wasmtime-wasi = { path = "../../wasi", version = "0.8.0" }
2929
target-lexicon = { version = "0.9.0", default-features = false }
3030
anyhow = "1.0.19"
3131
region = "2.0.0"

crates/misc/rust/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-rust"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Alex Crichton <alex@alexcrichton.com>"]
55
description = "Rust extension for Wasmtime"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -15,11 +15,11 @@ test = false
1515
doctest = false
1616

1717
[dependencies]
18-
wasmtime-interface-types = { path = "../../interface-types", version = "0.7.0" }
19-
wasmtime-jit = { path = "../../jit", version = "0.7.0" }
20-
wasmtime-rust-macro = { path = "./macro", version = "0.7.0" }
21-
wasmtime-wasi = { path = "../../wasi", version = "0.7.0" }
22-
wasmtime = { path = "../../api", version = "0.7.0" }
18+
wasmtime-interface-types = { path = "../../interface-types", version = "0.8.0" }
19+
wasmtime-jit = { path = "../../jit", version = "0.8.0" }
20+
wasmtime-rust-macro = { path = "./macro", version = "0.8.0" }
21+
wasmtime-wasi = { path = "../../wasi", version = "0.8.0" }
22+
wasmtime = { path = "../../api", version = "0.8.0" }
2323
anyhow = "1.0.19"
2424

2525
[badges]

crates/misc/rust/macro/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-rust-macro"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["Alex Crichton <alex@alexcrichton.com>"]
55
description = "Macro support crate for wasmtime-rust"
66
license = "Apache-2.0 WITH LLVM-exception"

0 commit comments

Comments
 (0)