Skip to content

Commit

Permalink
Bump version to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfishcode committed Feb 9, 2020
1 parent 00fe820 commit e8724b6
Show file tree
Hide file tree
Showing 27 changed files with 282 additions and 426 deletions.
564 changes: 210 additions & 354 deletions Cargo.lock

Large diffs are not rendered by default.

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.10.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.10.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.10.0" }
wasmtime-environ = { path = "../environ", version = "0.10.0" }
wasmtime-jit = { path = "../jit", version = "0.10.0" }
wasmparser = { version = "0.47.0", default-features = false }
target-lexicon = { version = "0.10.0", default-features = false }
anyhow = "1.0.19"
Expand All @@ -26,7 +26,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.10.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.10.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.10.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.19.0"
wasmparser = "0.47.0"
faerie = "0.14.0"
wasmtime-environ = { path = "../environ", version = "0.9.0" }
wasmtime-environ = { path = "../environ", version = "0.10.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.10.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.55", features = ["enable-serde"] }
cranelift-entity = { version = "0.55", features = ["enable-serde"] }
cranelift-wasm = { version = "0.55", features = ["enable-serde"] }
wasmparser = "0.47.0"
lightbeam = { path = "../lightbeam", optional = true, version = "0.9.0" }
lightbeam = { path = "../lightbeam", optional = true, version = "0.10.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.10.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -16,7 +16,7 @@ env_logger = { version = "0.7.1", optional = true }
log = "0.4.8"
wasmparser = "0.47.0"
wasmprinter = "0.2.0"
wasmtime = { path = "../api", version = "0.9.0" }
wasmtime = { path = "../api", version = "0.10.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.10.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.13"
wasmparser = { version = "0.47.0", default-features = false }
wasm-webidl-bindings = "0.6"
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.10.0" }
wasmtime-jit = { path = "../jit", version = "0.10.0" }
wasmtime-environ = { path = "../environ", version = "0.10.0" }
wasmtime-runtime = { path = "../runtime", version = "0.10.0" }
wasmtime-wasi = { path = "../wasi", version = "0.10.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.10.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.55", features = ["enable-serde"] }
cranelift-wasm = { version = "0.55", features = ["enable-serde"] }
cranelift-native = "0.55"
cranelift-frontend = "0.55"
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.10.0" }
wasmtime-runtime = { path = "../runtime", version = "0.10.0" }
wasmtime-debug = { path = "../debug", version = "0.10.0" }
region = "2.0.0"
thiserror = "1.0.4"
target-lexicon = { version = "0.10.0", default-features = false }
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.10.0"
authors = ["The Lightbeam Project Developers"]
description = "An optimising one-pass streaming compiler for WebAssembly"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
12 changes: 6 additions & 6 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.10.0"
authors = ["The Wasmtime Project Developers"]
description = "Python extension for Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -17,11 +17,11 @@ test = false
doc = false

[dependencies]
wasmtime = { path = "../../api", version = "0.9.0" }
wasmtime-environ = { path = "../../environ", version = "0.9.0" }
wasmtime-interface-types = { path = "../../interface-types", 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.10.0" }
wasmtime-environ = { path = "../../environ", version = "0.10.0" }
wasmtime-interface-types = { path = "../../interface-types", version = "0.10.0" }
wasmtime-runtime = { path = "../../runtime", version = "0.10.0" }
wasmtime-wasi = { path = "../../wasi", version = "0.10.0" }
target-lexicon = { version = "0.10.0", default-features = false }
anyhow = "1.0.19"
region = "2.0.0"
Expand Down
10 changes: 5 additions & 5 deletions crates/misc/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-rust"
version = "0.9.0"
version = "0.10.0"
authors = ["Alex Crichton <[email protected]>"]
description = "Rust extension for Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -15,10 +15,10 @@ test = false
doctest = false

[dependencies]
wasmtime-interface-types = { path = "../../interface-types", version = "0.9.0" }
wasmtime-rust-macro = { path = "./macro", version = "0.9.0" }
wasmtime-wasi = { path = "../../wasi", version = "0.9.0" }
wasmtime = { path = "../../api", version = "0.9.0" }
wasmtime-interface-types = { path = "../../interface-types", version = "0.10.0" }
wasmtime-rust-macro = { path = "./macro", version = "0.10.0" }
wasmtime-wasi = { path = "../../wasi", version = "0.10.0" }
wasmtime = { path = "../../api", version = "0.10.0" }
anyhow = "1.0.19"

[badges]
Expand Down
2 changes: 1 addition & 1 deletion crates/misc/rust/macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-rust-macro"
version = "0.9.0"
version = "0.10.0"
authors = ["Alex Crichton <[email protected]>"]
description = "Macro support crate for wasmtime-rust"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
4 changes: 2 additions & 2 deletions crates/obj/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-obj"
version = "0.9.0"
version = "0.10.0"
authors = ["The Wasmtime Project Developers"]
description = "Native object file output for WebAsssembly code in Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -12,7 +12,7 @@ edition = "2018"

[dependencies]
anyhow = "1.0"
wasmtime-environ = { path = "../environ", version = "0.9.0" }
wasmtime-environ = { path = "../environ", version = "0.10.0" }
faerie = "0.14.0"
more-asserts = "0.2.1"

Expand Down
4 changes: 2 additions & 2 deletions crates/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-runtime"
version = "0.9.0"
version = "0.10.0"
authors = ["The Wasmtime Project Developers"]
description = "Runtime library support for Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -11,7 +11,7 @@ readme = "README.md"
edition = "2018"

[dependencies]
wasmtime-environ = { path = "../environ", version = "0.9.0" }
wasmtime-environ = { path = "../environ", version = "0.10.0" }
region = "2.0.0"
lazy_static = "1.2.0"
libc = { version = "0.2.60", default-features = false }
Expand Down
14 changes: 7 additions & 7 deletions crates/test-programs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-programs"
version = "0.9.0"
version = "0.10.0"
authors = ["The Wasmtime Project Developers"]
readme = "README.md"
edition = "2018"
Expand All @@ -10,12 +10,12 @@ publish = false
cfg-if = "0.1.9"

[dev-dependencies]
wasi-common = { path = "../wasi-common", version = "0.9.0" }
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-wasi = { path = "../wasi", version = "0.9.0" }
wasmtime = { path = "../api", version = "0.9.0" }
wasi-common = { path = "../wasi-common", version = "0.10.0" }
wasmtime-runtime = { path = "../runtime", version = "0.10.0" }
wasmtime-environ = { path = "../environ", version = "0.10.0" }
wasmtime-jit = { path = "../jit", version = "0.10.0" }
wasmtime-wasi = { path = "../wasi", version = "0.10.0" }
wasmtime = { path = "../api", version = "0.10.0" }
target-lexicon = "0.10.0"
pretty_env_logger = "0.3.0"
tempfile = "3.1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/test-programs/wasi-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasi-tests"
version = "0.9.0"
version = "0.10.0"
authors = ["The Wasmtime Project Developers"]
readme = "README.md"
edition = "2018"
Expand Down
8 changes: 4 additions & 4 deletions crates/wasi-c/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-wasi-c"
version = "0.9.0"
version = "0.10.0"
authors = ["The Cranelift Project Developers"]
description = "WASI API support for Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -11,9 +11,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.10.0" }
wasmtime-environ = { path = "../environ", version = "0.10.0" }
wasmtime-jit = { path = "../jit", version = "0.10.0" }
cranelift-codegen = { version = "0.55", features = ["enable-serde"] }
cranelift-entity = { version = "0.55", features = ["enable-serde"] }
cranelift-wasm = { version = "0.55", features = ["enable-serde"] }
Expand Down
10 changes: 5 additions & 5 deletions crates/wasi-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasi-common"
version = "0.9.0"
version = "0.10.0"
authors = ["The Wasmtime Project Developers"]
description = "WASI implementation in Rust"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -11,7 +11,7 @@ readme = "README.md"
edition = "2018"

[dependencies]
wasi-common-cbindgen = { path = "wasi-common-cbindgen", version = "0.9.0" }
wasi-common-cbindgen = { path = "wasi-common-cbindgen", version = "0.10.0" }
anyhow = "1.0"
thiserror = "1.0"
libc = "0.2"
Expand All @@ -21,13 +21,13 @@ log = "0.4"
filetime = "0.2.7"
lazy_static = "1.4.0"
num = { version = "0.2.0", default-features = false }
wig = { path = "wig", version = "0.9.2" }
wig = { path = "wig", version = "0.10.0" }

[target.'cfg(unix)'.dependencies]
yanix = { path = "yanix", version = "0.9.0" }
yanix = { path = "yanix", version = "0.10.0" }

[target.'cfg(windows)'.dependencies]
winx = { path = "winx", version = "0.9.0" }
winx = { path = "winx", version = "0.10.0" }
winapi = "0.3"
cpu-time = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion crates/wasi-common/wasi-common-cbindgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasi-common-cbindgen"
version = "0.9.0"
version = "0.10.0"
authors = ["Jakub Konka <[email protected]>"]
description = "Interface generator utilities used by wasi-common"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasi-common/wig/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wig"
version = "0.9.2"
version = "0.10.0"
authors = ["Dan Gohman <[email protected]>"]
description = "WebAssembly Interface Generator"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasi-common/winx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "winx"
version = "0.9.0"
version = "0.10.0"
authors = ["Jakub Konka <[email protected]>"]
description = "Windows API helper library"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasi-common/yanix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yanix"
version = "0.9.0"
version = "0.10.0"
authors = ["The Wasmtime Project Developers"]
description = "Yet Another Nix crate: a Unix API helper library"
license = "Apache-2.0 WITH LLVM-exception"
Expand Down
14 changes: 7 additions & 7 deletions crates/wasi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmtime-wasi"
version = "0.9.0"
version = "0.10.0"
authors = ["The Cranelift Project Developers"]
description = "WASI API support for Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
Expand All @@ -11,17 +11,17 @@ readme = "README.md"
edition = "2018"

[dependencies]
wasmtime = { path = "../api", version = "0.9.0" }
wasmtime-runtime = { path = "../runtime", version = "0.9.0" }
wasmtime-environ = { path = "../environ", version = "0.9.0" }
wasmtime-jit = { path = "../jit", version = "0.9.0" }
wasi-common = { path = "../wasi-common", version = "0.9.0" }
wasmtime = { path = "../api", version = "0.10.0" }
wasmtime-runtime = { path = "../runtime", version = "0.10.0" }
wasmtime-environ = { path = "../environ", version = "0.10.0" }
wasmtime-jit = { path = "../jit", version = "0.10.0" }
wasi-common = { path = "../wasi-common", version = "0.10.0" }
cranelift-codegen = { version = "0.55", features = ["enable-serde"] }
cranelift-entity = { version = "0.55", features = ["enable-serde"] }
cranelift-wasm = { version = "0.55", features = ["enable-serde"] }
target-lexicon = "0.10.0"
log = { version = "0.4.8", default-features = false }
wig = { path = "../wasi-common/wig", version = "0.9.2" }
wig = { path = "../wasi-common/wig", version = "0.10.0" }

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

0 comments on commit e8724b6

Please sign in to comment.