Skip to content

Commit

Permalink
Bump to 0.12.0 (#997)
Browse files Browse the repository at this point in the history
* Bump to 0.12.0

* Another lockfile update
  • Loading branch information
alexcrichton committed Feb 26, 2020
1 parent c8ab1e2 commit 33a39ff
Show file tree
Hide file tree
Showing 27 changed files with 84 additions and 84 deletions.
46 changes: 23 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-cli"
version = "0.9.0"
version = "0.12.0"
authors = ["The Wasmtime Project Developers"]
description = "Command-line interface for Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
10 changes: 5 additions & 5 deletions crates/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime"
version = "0.9.0"
version = "0.12.0"
authors = ["The Wasmtime Project Developers"]
description = "High-level API to expose the Wasmtime runtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -9,9 +9,9 @@ readme = "README.md"
edition = "2018"

[dependencies]
wasmtime-runtime = { path = "../runtime", version = "0.9.0" }
wasmtime-environ = { path = "../environ", version = "0.9.0" }
wasmtime-jit = { path = "../jit", version = "0.9.0" }
wasmtime-runtime = { path = "../runtime", version = "0.12.0" }
wasmtime-environ = { path = "../environ", version = "0.12.0" }
wasmtime-jit = { path = "../jit", version = "0.12.0" }
wasmtime-profiling = { path = "../profiling" }
wasmparser = "0.51.2"
target-lexicon = { version = "0.10.0", default-features = false }
Expand All @@ -29,7 +29,7 @@ winapi = "0.3.7"

[dev-dependencies]
# for wasmtime.rs
wasi-common = { path = "../wasi-common", version = "0.9.0" }
wasi-common = { path = "../wasi-common", version = "0.12.0" }
pretty_env_logger = "0.3.0"
rayon = "1.2.1"
file-per-thread-logger = "0.1.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/c-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-c-api"
version = "0.9.0"
version = "0.12.0"
authors = ["The Wasmtime Project Developers"]
description = "C API to expose the Wasmtime runtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
4 changes: 2 additions & 2 deletions crates/debug/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-debug"
version = "0.9.0"
version = "0.12.0"
authors = ["The Wasmtime Project Developers"]
description = "Debug utils for WebAsssembly code in Cranelift"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -15,7 +15,7 @@ edition = "2018"
gimli = "0.20.0"
wasmparser = "0.51.2"
faerie = "0.14.0"
wasmtime-environ = { path = "../environ", version = "0.9.0" }
wasmtime-environ = { path = "../environ", version = "0.12.0" }
target-lexicon = { version = "0.10.0", default-features = false }
anyhow = "1.0"
thiserror = "1.0.4"
Expand Down
4 changes: 2 additions & 2 deletions crates/environ/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-environ"
version = "0.9.0"
version = "0.12.0"
authors = ["The Wasmtime Project Developers"]
description = "Standalone environment support for WebAsssembly code in Cranelift"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -17,7 +17,7 @@ cranelift-codegen = { version = "0.59.0", features = ["enable-serde"] }
cranelift-entity = { version = "0.59.0", features = ["enable-serde"] }
cranelift-wasm = { version = "0.59.0", features = ["enable-serde"] }
wasmparser = "0.51.2"
lightbeam = { path = "../lightbeam", optional = true, version = "0.9.0" }
lightbeam = { path = "../lightbeam", optional = true, version = "0.12.0" }
indexmap = "1.0.2"
rayon = "1.2.1"
thiserror = "1.0.4"
Expand Down
4 changes: 2 additions & 2 deletions crates/fuzzing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Fuzzing infrastructure for Wasmtime"
edition = "2018"
name = "wasmtime-fuzzing"
publish = false
version = "0.9.0"
version = "0.12.0"

[dependencies]
anyhow = "1.0.22"
Expand All @@ -14,7 +14,7 @@ env_logger = "0.7.1"
log = "0.4.8"
wasmparser = "0.51.2"
wasmprinter = "0.2.1"
wasmtime = { path = "../api", version = "0.9.0" }
wasmtime = { path = "../api", version = "0.12.0" }

[dev-dependencies]
wat = "1.0"
12 changes: 6 additions & 6 deletions crates/interface-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-interface-types"
version = "0.9.0"
version = "0.12.0"
authors = ["The Wasmtime Project Developers"]
description = "Support for wasm interface types with wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -15,11 +15,11 @@ anyhow = "1.0.19"
walrus = "0.15"
wasmparser = "0.51.2"
wasm-webidl-bindings = "0.8"
wasmtime = { path = "../api", version = "0.9.0" }
wasmtime-jit = { path = "../jit", version = "0.9.0" }
wasmtime-environ = { path = "../environ", version = "0.9.0" }
wasmtime-runtime = { path = "../runtime", version = "0.9.0" }
wasmtime-wasi = { path = "../wasi", version = "0.9.0" }
wasmtime = { path = "../api", version = "0.12.0" }
wasmtime-jit = { path = "../jit", version = "0.12.0" }
wasmtime-environ = { path = "../environ", version = "0.12.0" }
wasmtime-runtime = { path = "../runtime", version = "0.12.0" }
wasmtime-wasi = { path = "../wasi", version = "0.12.0" }

[badges]
maintenance = { status = "actively-developed" }
8 changes: 4 additions & 4 deletions crates/jit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-jit"
version = "0.9.0"
version = "0.12.0"
authors = ["The Wasmtime Project Developers"]
description = "JIT-style execution for WebAsssembly code in Cranelift"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -16,9 +16,9 @@ cranelift-entity = { version = "0.59.0", features = ["enable-serde"] }
cranelift-wasm = { version = "0.59.0", features = ["enable-serde"] }
cranelift-native = "0.59.0"
cranelift-frontend = "0.59.0"
wasmtime-environ = { path = "../environ", version = "0.9.0" }
wasmtime-runtime = { path = "../runtime", version = "0.9.0" }
wasmtime-debug = { path = "../debug", version = "0.9.0" }
wasmtime-environ = { path = "../environ", version = "0.12.0" }
wasmtime-runtime = { path = "../runtime", version = "0.12.0" }
wasmtime-debug = { path = "../debug", version = "0.12.0" }
wasmtime-profiling = { path = "../profiling" }
region = "2.0.0"
thiserror = "1.0.4"
Expand Down
2 changes: 1 addition & 1 deletion crates/lightbeam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lightbeam"
version = "0.9.0"
version = "0.12.0"
authors = ["The Lightbeam Project Developers"]
description = "An optimising one-pass streaming compiler for WebAssembly"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
8 changes: 4 additions & 4 deletions crates/misc/py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-py"
version = "0.9.0"
version = "0.12.0"
authors = ["The Wasmtime Project Developers"]
description = "Python extension for Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -17,9 +17,9 @@ test = false
doc = false

[dependencies]
wasmtime = { path = "../../api", version = "0.9.0" }
wasmtime-interface-types = { path = "../../interface-types", version = "0.9.0" }
wasmtime-wasi = { path = "../../wasi", version = "0.9.0" }
wasmtime = { path = "../../api", version = "0.12.0" }
wasmtime-interface-types = { path = "../../interface-types", version = "0.12.0" }
wasmtime-wasi = { path = "../../wasi", version = "0.12.0" }
target-lexicon = { version = "0.10.0", default-features = false }
anyhow = "1.0.19"
region = "2.0.0"
Expand Down
Loading

0 comments on commit 33a39ff

Please sign in to comment.