-
Notifications
You must be signed in to change notification settings - Fork 833
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1437: Prepare for 0.17.0 release r=MarkMcCaskey a=MarkMcCaskey # Review - [x] Add a short description of the the change to the CHANGELOG.md file Co-authored-by: Mark McCaskey <[email protected]>
- Loading branch information
Showing
22 changed files
with
67 additions
and
60 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
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-bin" | ||
version = "0.16.2" | ||
version = "0.17.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" | ||
version = "0.16.2" | ||
version = "0.17.0" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
publish = true | ||
|
@@ -11,11 +11,11 @@ license = "MIT" | |
|
||
[dependencies] | ||
serde = { version = "1", features = ["derive"] } | ||
wasmer-runtime-core = { version = "0.16.2", path = "../runtime-core" } | ||
wasmer-runtime-core = { version = "0.17.0", path = "../runtime-core" } | ||
|
||
[dependencies.wasmer-singlepass-backend] | ||
path = "../singlepass-backend" | ||
version = "0.16.2" | ||
version = "0.17.0" | ||
optional = true | ||
|
||
[dependencies.wasmer-llvm-backend] | ||
|
@@ -24,7 +24,7 @@ optional = true | |
|
||
[dependencies.wasmer-clif-backend] | ||
path = "../clif-backend" | ||
version = "0.16.2" | ||
version = "0.17.0" | ||
optional = true | ||
|
||
[features] | ||
|
@@ -41,4 +41,4 @@ default-backend-singlepass = ["singlepass"] | |
default-backend-llvm = ["llvm"] | ||
default-backend-cranelift = ["cranelift"] | ||
|
||
deterministic-execution = ["wasmer-singlepass-backend/deterministic-execution", "wasmer-runtime-core/deterministic-execution"] | ||
deterministic-execution = ["wasmer-singlepass-backend/deterministic-execution", "wasmer-runtime-core/deterministic-execution"] |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Wasmer | ||
|
||
Wasmer is a universal WebAssembly runtime. | ||
|
||
This crate is not ready to be used directly yet. If you're interested in using the Wasmer runtime, checkout the [wasmer-runtime](https://crates.io/crates/wasmer-runtime) crate! |
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.16.2" | ||
version = "0.17.0" | ||
description = "Wasmer runtime Cranelift compiler backend" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -11,7 +11,7 @@ edition = "2018" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.2" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.17.0" } | ||
cranelift-native = "0.59.0" | ||
cranelift-codegen = "0.59.0" | ||
cranelift-entity = "0.59.0" | ||
|
@@ -38,7 +38,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.16.2" } | ||
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.17.0" } | ||
|
||
[features] | ||
generate-debug-information = ["wasm-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-emscripten" | ||
version = "0.16.2" | ||
version = "0.17.0" | ||
description = "Wasmer runtime emscripten implementation library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -15,7 +15,7 @@ lazy_static = "1.4" | |
libc = "0.2.60" | ||
log = "0.4" | ||
time = "0.1" | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.2" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.17.0" } | ||
|
||
[target.'cfg(windows)'.dependencies] | ||
getrandom = "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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "wasmer-interface-types" | ||
version = "0.16.2" | ||
version = "0.17.0" | ||
description = "WebAssembly Interface Types library for Wasmer" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -17,4 +17,4 @@ wast = "8.0" | |
serde = { version = "1.0", features = ["derive"], optional = true } | ||
|
||
[features] | ||
default = ["serde"] | ||
default = ["serde"] |
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-llvm-backend" | ||
version = "0.16.2" | ||
version = "0.17.0" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
|
@@ -10,7 +10,7 @@ edition = "2018" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.2", features = ["generate-debug-information-no-export-symbols"] } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.17.0", features = ["generate-debug-information-no-export-symbols"] } | ||
wasmparser = "0.51.3" | ||
smallvec = "1" | ||
goblin = "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
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.16.2" | ||
version = "0.17.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.16.2" | ||
version = "0.17.0" | ||
description = "Wasmer runtime library" | ||
license = "MIT" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
|
@@ -11,17 +11,17 @@ edition = "2018" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.16.2", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.17.0", optional = true } | ||
lazy_static = "1.4" | ||
memmap = "0.7" | ||
|
||
[dependencies.wasmer-runtime-core] | ||
path = "../runtime-core" | ||
version = "0.16.2" | ||
version = "0.17.0" | ||
|
||
[dependencies.wasmer-clif-backend] | ||
path = "../clif-backend" | ||
version = "0.16.2" | ||
version = "0.17.0" | ||
optional = true | ||
|
||
# Dependencies for caching. | ||
|
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
Oops, something went wrong.