Skip to content

Commit

Permalink
Merge #1483
Browse files Browse the repository at this point in the history
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
bors[bot] and Mark McCaskey authored Jun 24, 2020
2 parents 6796f65 + 3b2b18f commit 63a2d81
Show file tree
Hide file tree
Showing 20 changed files with 60 additions and 58 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## **[Unreleased]**

## 0.17.1 - 2020-06-24

- [#1439](https://github.com/wasmerio/wasmer/pull/1439) Move `wasmer-interface-types` into its own repository

## 0.17.0 - 2020-05-11
Expand Down
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
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"
Expand Down
10 changes: 5 additions & 5 deletions lib/api/Cargo.toml
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
Expand All @@ -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]
Expand Down
6 changes: 3 additions & 3 deletions lib/clif-backend/Cargo.toml
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]>"]
Expand All @@ -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"
Expand All @@ -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"]
4 changes: 2 additions & 2 deletions lib/emscripten/Cargo.toml
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]>"]
Expand All @@ -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"
4 changes: 2 additions & 2 deletions lib/llvm-backend/Cargo.toml
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]>"]
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions lib/middleware-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-middleware-common"
version = "0.17.0"
version = "0.17.1"
repository = "https://github.com/wasmerio/wasmer"
description = "Wasmer runtime common middlewares"
license = "MIT"
Expand All @@ -10,4 +10,4 @@ categories = ["wasm"]
edition = "2018"

[dependencies]
wasmer-runtime-core = { path = "../runtime-core", version = "0.17.0" }
wasmer-runtime-core = { path = "../runtime-core", version = "0.17.1" }
10 changes: 5 additions & 5 deletions lib/runtime-c-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-runtime-c-api"
version = "0.17.0"
version = "0.17.1"
description = "Wasmer C API library"
documentation = "https://wasmerio.github.io/wasmer/c/runtime-c-api/"
license = "MIT"
Expand All @@ -20,22 +20,22 @@ libc = "0.2.60"
[dependencies.wasmer]
default-features = false
path = "../api"
version = "0.17.0"
version = "0.17.1"

[dependencies.wasmer-runtime-core]
default-features = false
path = "../runtime-core"
version = "0.17.0"
version = "0.17.1"

[dependencies.wasmer-wasi]
default-features = false
path = "../wasi"
version = "0.17.0"
version = "0.17.1"
optional = true

[dependencies.wasmer-emscripten]
path = "../emscripten"
version = "0.17.0"
version = "0.17.1"
optional = true

[features]
Expand Down
2 changes: 1 addition & 1 deletion lib/runtime-core/Cargo.toml
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]>"]
Expand Down
10 changes: 5 additions & 5 deletions lib/runtime/Cargo.toml
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]>"]
Expand All @@ -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.
Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions lib/singlepass-backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-singlepass-backend"
version = "0.17.0"
version = "0.17.1"
repository = "https://github.com/wasmerio/wasmer"
description = "Wasmer runtime single pass compiler backend"
license = "MIT"
Expand All @@ -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" }
dynasm = "0.5"
dynasmrt = "0.5"
lazy_static = "1.4"
Expand Down
6 changes: 3 additions & 3 deletions lib/wasi-experimental-io-devices/Cargo.toml
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"
Expand All @@ -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"
Loading

0 comments on commit 63a2d81

Please sign in to comment.