-
Notifications
You must be signed in to change notification settings - Fork 814
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1483: Prepare for 0.17.1 release r=MarkMcCaskey a=MarkMcCaskey Shipping a patch release ensuring that a bug fix intended to be included in `0.17.0` is shipped (`dbg!` print statement is apparently in `0.17.0` release) # 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
20 changed files
with
60 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
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.17.0" | ||
version = "0.17.1" | ||
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.17.0" | ||
version = "0.17.1" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
publish = true | ||
|
@@ -12,21 +12,21 @@ license = "MIT" | |
|
||
[dependencies] | ||
serde = { version = "1", features = ["derive"] } | ||
wasmer-runtime-core = { version = "0.17.0", path = "../runtime-core" } | ||
wasmer-runtime-core = { version = "0.17.1", path = "../runtime-core" } | ||
|
||
[dependencies.wasmer-singlepass-backend] | ||
path = "../singlepass-backend" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
optional = true | ||
|
||
[dependencies.wasmer-llvm-backend] | ||
path = "../llvm-backend" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
optional = true | ||
|
||
[dependencies.wasmer-clif-backend] | ||
path = "../clif-backend" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
optional = true | ||
|
||
[features] | ||
|
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.17.0" | ||
version = "0.17.1" | ||
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.17.0" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.17.1" } | ||
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.17.0" } | ||
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.17.1" } | ||
|
||
[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.17.0" | ||
version = "0.17.1" | ||
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.17.0" } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.17.1" } | ||
|
||
[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-llvm-backend" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
description = "Wasmer runtime LLVM 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.17.0", features = ["generate-debug-information-no-export-symbols"] } | ||
wasmer-runtime-core = { path = "../runtime-core", version = "0.17.1", 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.17.0" | ||
version = "0.17.1" | ||
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.17.0" | ||
version = "0.17.1" | ||
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.17.0", optional = true } | ||
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.17.1", optional = true } | ||
lazy_static = "1.4" | ||
memmap = "0.7" | ||
|
||
[dependencies.wasmer-runtime-core] | ||
path = "../runtime-core" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
|
||
[dependencies.wasmer-clif-backend] | ||
path = "../clif-backend" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
optional = true | ||
|
||
# Dependencies for caching. | ||
|
@@ -39,7 +39,7 @@ wabt = "0.9.1" | |
|
||
[dependencies.wasmer-llvm-backend] | ||
path = "../llvm-backend" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
optional = true | ||
|
||
[features] | ||
|
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-wasi-experimental-io-devices" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = ["The Wasmer Engineering Team <[email protected]>"] | ||
edition = "2018" | ||
repository = "https://github.com/wasmerio/wasmer" | ||
|
@@ -14,8 +14,8 @@ maintenance = { status = "experimental" } | |
[dependencies] | ||
log = "0.4" | ||
minifb = "0.13" | ||
wasmer-wasi = { version = "0.17.0", path = "../wasi" } | ||
wasmer-runtime-core = { version = "0.17.0", path = "../runtime-core" } | ||
wasmer-wasi = { version = "0.17.1", path = "../wasi" } | ||
wasmer-runtime-core = { version = "0.17.1", path = "../runtime-core" } | ||
ref_thread_local = "0.0" | ||
serde = "1" | ||
typetag = "0.1" |
Oops, something went wrong.