Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 0.16.1 release #1291

Merged
merged 2 commits into from
Mar 12, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

## 0.16.0 - 2020-03-11
syrusakbary marked this conversation as resolved.
Show resolved Hide resolved

- [#1291](https://github.com/wasmerio/wasmer/pull/1291) Fix installation packaging script to package the `wax` command.

## 0.16.0 - 2020-03-11

- [#1286](https://github.com/wasmerio/wasmer/pull/1286) Updated Windows Wasmer icons. Add wax
- [#1284](https://github.com/wasmerio/wasmer/pull/1284) Implement string and memory instructions in `wasmer-interface-types`
- [#1272](https://github.com/wasmerio/wasmer/pull/1272) Fix off-by-one error bug when accessing memory with a `WasmPtr` that contains the last valid byte of memory. Also changes the behavior of `WasmPtr<T, Array>` with a length of 0 and `WasmPtr<T>` where `std::mem::size_of::<T>()` is 0 to always return `None`
Expand Down
38 changes: 19 additions & 19 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"
version = "0.16.0"
version = "0.16.1"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
edition = "2018"
repository = "https://github.com/wasmerio/wasmer"
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.16.0"
version = "0.16.1"
description = "Wasmer runtime Cranelift compiler backend"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
Expand All @@ -11,7 +11,7 @@ edition = "2018"
readme = "README.md"

[dependencies]
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.0" }
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.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.16.0" }
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.16.1" }

[features]
generate-debug-information = ["wasm-debug"]
2 changes: 1 addition & 1 deletion lib/dev-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-dev-utils"
version = "0.16.0"
version = "0.16.1"
description = "Wasmer runtime core library"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
Expand Down
14 changes: 7 additions & 7 deletions lib/emscripten-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-emscripten-tests"
version = "0.16.0"
version = "0.16.1"
description = "Tests for our Emscripten implementation"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
Expand All @@ -9,15 +9,15 @@ publish = false
build = "build/mod.rs"

[dependencies]
wasmer-emscripten = { path = "../emscripten", version = "0.16.0" }
wasmer-runtime = { path = "../runtime", version = "0.16.0", default-features = false }
wasmer-clif-backend = { path = "../clif-backend", version = "0.16.0", optional = true}
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.16.0", optional = true, features = ["test"] }
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.16.0", optional = true }
wasmer-emscripten = { path = "../emscripten", version = "0.16.1" }
wasmer-runtime = { path = "../runtime", version = "0.16.1", default-features = false }
wasmer-clif-backend = { path = "../clif-backend", version = "0.16.1", optional = true}
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.16.1", optional = true, features = ["test"] }
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.16.1", optional = true }

[dev-dependencies]
wabt = "0.9.1"
wasmer-dev-utils = { path = "../dev-utils", version = "0.16.0"}
wasmer-dev-utils = { path = "../dev-utils", version = "0.16.1"}

[build-dependencies]
glob = "0.3"
Expand Down
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.16.0"
version = "0.16.1"
description = "Wasmer runtime emscripten implementation library"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
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.16.0" }
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.1" }

[target.'cfg(windows)'.dependencies]
getrandom = "0.1"
2 changes: 1 addition & 1 deletion lib/interface-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-interface-types"
version = "0.16.0"
version = "0.16.1"
description = "WebAssembly Interface Types library for Wasmer"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
Expand Down
6 changes: 3 additions & 3 deletions lib/llvm-backend-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ edition = "2018"

[dependencies]
wabt = "0.9.1"
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.0" }
wasmer-runtime = { path = "../runtime", version = "0.16.0" }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.16.0", features = ["test"] }
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.1" }
wasmer-runtime = { path = "../runtime", version = "0.16.1" }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.16.1", features = ["test"] }

[features]
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.16.0"
version = "0.16.1"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
repository = "https://github.com/wasmerio/wasmer"
Expand All @@ -10,7 +10,7 @@ edition = "2018"
readme = "README.md"

[dependencies]
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.0", features = ["generate-debug-information-no-export-symbols"] }
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.1", features = ["generate-debug-information-no-export-symbols"] }
wasmparser = "0.51.3"
smallvec = "0.6"
goblin = "0.0.24"
Expand Down
12 changes: 6 additions & 6 deletions lib/middleware-common-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "wasmer-middleware-common-tests"
version = "0.16.0"
version = "0.16.1"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
edition = "2018"
repository = "https://github.com/wasmerio/wasmer"
license = "MIT"
publish = false

[dependencies]
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.0" }
wasmer-middleware-common = { path = "../middleware-common", version = "0.16.0" }
wasmer-clif-backend = { path = "../clif-backend", version = "0.16.0", optional = true }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.16.0", features = ["test"], optional = true }
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.16.0", optional = true }
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.1" }
wasmer-middleware-common = { path = "../middleware-common", version = "0.16.1" }
wasmer-clif-backend = { path = "../clif-backend", version = "0.16.1", optional = true }
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.16.1", features = ["test"], optional = true }
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.16.1", optional = true }

[features]
clif = ["wasmer-clif-backend"]
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.16.0"
version = "0.16.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.16.0" }
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.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.16.0"
version = "0.16.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-runtime]
default-features = false
path = "../runtime"
version = "0.16.0"
version = "0.16.1"

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

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

[dependencies.wasmer-emscripten]
path = "../emscripten"
version = "0.16.0"
version = "0.16.1"
optional = true

[features]
Expand Down
Loading