-
Notifications
You must be signed in to change notification settings - Fork 829
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
900: Prepare for 0.9.0 release r=MarkMcCaskey a=MarkMcCaskey Co-authored-by: Mark McCaskey <[email protected]>
- Loading branch information
Showing
19 changed files
with
59 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/wasmerio/wasmer" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-clif-backend" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
description = "Wasmer runtime Cranelift compiler backend" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -9,7 +9,7 @@ edition = "2018" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.8.0" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.9.0" } | ||
cranelift-native = "0.44.0" | ||
cranelift-codegen = "0.44.0" | ||
cranelift-entity = "0.44.0" | ||
|
@@ -35,7 +35,7 @@ version = "0.0.7" | |
|
||
[target.'cfg(windows)'.dependencies] | ||
winapi = { version = "0.3", features = ["errhandlingapi", "minwindef", "minwinbase", "winnt"] } | ||
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.8.0" } | ||
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.9.0" } | ||
|
||
[features] | ||
debug = ["wasmer-runtime-core/debug"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-dev-utils" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
description = "Wasmer runtime core library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-emscripten-tests" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
description = "Tests for our Emscripten implementation" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -9,15 +9,15 @@ publish = false | |
build = "build/mod.rs" | ||
|
||
[dependencies] | ||
wasmer-emscripten = { path = "../emscripten", version = "0.8.0" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.8.0" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.8.0" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.8.0", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.8.0", optional = true } | ||
wasmer-emscripten = { path = "../emscripten", version = "0.9.0" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.9.0" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.9.0" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.9.0", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.9.0", optional = true } | ||
|
||
[dev-dependencies] | ||
wabt = "0.9.1" | ||
wasmer-dev-utils = { path = "../dev-utils", version = "0.8.0"} | ||
wasmer-dev-utils = { path = "../dev-utils", version = "0.9.0"} | ||
|
||
[build-dependencies] | ||
glob = "0.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-emscripten" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
description = "Wasmer runtime emscripten implementation library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -12,7 +12,7 @@ byteorder = "1.3" | |
lazy_static = "1.4" | ||
libc = "0.2.60" | ||
time = "0.1" | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.8.0" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.9.0" } | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
rand = "0.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "wasmer-llvm-backend" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.8.0" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.9.0" } | ||
wasmparser = "0.39.1" | ||
smallvec = "0.6" | ||
goblin = "0.0.24" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
[package] | ||
name = "wasmer-middleware-common-tests" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/wasmerio/wasmer" | ||
license = "MIT" | ||
publish = false | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.8.0" } | ||
wasmer-middleware-common = { path = "../middleware-common", version = "0.8.0" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.8.0" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.8.0", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.8.0", optional = true } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.9.0" } | ||
wasmer-middleware-common = { path = "../middleware-common", version = "0.9.0" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.9.0" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.9.0", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.9.0", optional = true } | ||
|
||
[features] | ||
clif = [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "wasmer-middleware-common" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
repository = "https://github.com/wasmerio/wasmer" | ||
description = "Wasmer runtime common middlewares" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.8.0" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.9.0" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-runtime-c-api" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
description = "Wasmer C API library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -17,12 +17,12 @@ libc = "0.2.60" | |
[dependencies.wasmer-runtime] | ||
default-features = false | ||
path = "../runtime" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
|
||
[dependencies.wasmer-runtime-core] | ||
default-features = false | ||
path = "../runtime-core" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
|
||
[features] | ||
default = ["cranelift-backend"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-runtime-core" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
description = "Wasmer runtime core library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-runtime" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
description = "Wasmer runtime library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -9,17 +9,17 @@ edition = "2018" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.8.0", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.9.0", optional = true } | ||
lazy_static = "1.4" | ||
memmap = "0.7" | ||
|
||
[dependencies.wasmer-runtime-core] | ||
path = "../runtime-core" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
|
||
[dependencies.wasmer-clif-backend] | ||
path = "../clif-backend" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
optional = true | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-spectests" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
description = "Wasmer spectests library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -9,10 +9,10 @@ edition = "2018" | |
|
||
[dependencies] | ||
glob = "0.3" | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.8.0" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.8.0" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.8.0", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.8.0", optional = true } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.9.0" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.9.0" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.9.0", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.9.0", optional = true } | ||
|
||
[build-dependencies] | ||
wabt = "0.9.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-wasi-tests" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
description = "Tests for our WASI implementation" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -9,20 +9,20 @@ publish = false | |
build = "build/mod.rs" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.8.0" } | ||
wasmer-runtime = { path = "../runtime", version = "0.8.0" } | ||
wasmer-wasi = { path = "../wasi", version = "0.8.0" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.9.0" } | ||
wasmer-runtime = { path = "../runtime", version = "0.9.0" } | ||
wasmer-wasi = { path = "../wasi", version = "0.9.0" } | ||
# hack to get tests to work | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.8.0", optional = true } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.8.0", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.9.0", optional = true } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.9.0", optional = true } | ||
|
||
|
||
[build-dependencies] | ||
glob = "0.3" | ||
|
||
[dev-dependencies] | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.8.0" } | ||
wasmer-dev-utils = { path = "../dev-utils", version = "0.8.0"} | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.9.0" } | ||
wasmer-dev-utils = { path = "../dev-utils", version = "0.9.0"} | ||
|
||
[features] | ||
clif = [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-wasi" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
description = "Wasmer runtime WASI implementation library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -17,7 +17,7 @@ rand = "0.7" | |
time = "0.1" | ||
typetag = "0.1" | ||
serde = { version = "1", features = ["derive"] } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.8.0" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.9.0" } | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
winapi = "0.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
[package] | ||
name = "wasmer-win-exception-handler" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
description = "Wasmer runtime exception handling for Windows" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
edition = "2018" | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.8.0" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.9.0" } | ||
winapi = { version = "0.3.8", features = ["winbase", "errhandlingapi", "minwindef", "minwinbase", "winnt"] } | ||
libc = "0.2.60" | ||
|
||
[build-dependencies] | ||
cmake = "0.1" | ||
cmake = "0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters