-
Notifications
You must be signed in to change notification settings - Fork 824
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
575: Prepare for release of 0.5.7 r=MarkMcCaskey a=MarkMcCaskey Co-authored-by: Mark McCaskey <[email protected]>
- Loading branch information
Showing
22 changed files
with
117 additions
and
114 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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.5.6" | ||
version = "0.5.7" | ||
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,14 +1,14 @@ | ||
[package] | ||
name = "wasmer-clif-backend" | ||
version = "0.5.6" | ||
version = "0.5.7" | ||
description = "Wasmer runtime Cranelift compiler backend" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.6" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.7" } | ||
cranelift-native = { version = "0.31" } | ||
cranelift-codegen = { version = "0.31" } | ||
cranelift-entity = { version = "0.31" } | ||
|
@@ -34,7 +34,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.5.6" } | ||
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.5.7" } | ||
|
||
[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.5.6" | ||
version = "0.5.7" | ||
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.5.6" | ||
version = "0.5.7" | ||
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.5.6" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.6" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.6" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.6", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.6", optional = true } | ||
wasmer-emscripten = { path = "../emscripten", version = "0.5.7" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.7" } | ||
wasmer-clif-backend = { path = "../clif-backend", version = "0.5.7" } | ||
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.7", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.7", optional = true } | ||
|
||
[dev-dependencies] | ||
wabt = "0.7.2" | ||
wasmer-dev-utils = { path = "../dev-utils", version = "0.5.6"} | ||
wasmer-dev-utils = { path = "../dev-utils", version = "0.5.7"} | ||
|
||
[build-dependencies] | ||
glob = "0.2.11" | ||
|
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.5.6" | ||
version = "0.5.7" | ||
description = "Wasmer runtime emscripten implementation library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -13,7 +13,7 @@ hashbrown = "0.1" | |
lazy_static = "1.2.0" | ||
libc = "0.2.49" | ||
time = "0.1.41" | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.6" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.7" } | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
rand = "0.6" | ||
|
Oops, something went wrong.