From 83da82d8449c087cce33679b486cfa7a36329b50 Mon Sep 17 00:00:00 2001 From: Mark McCaskey Date: Tue, 2 Jul 2019 14:13:45 -0700 Subject: [PATCH] update for release wasmer 0.5.2 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- lib/clif-backend/Cargo.toml | 6 +++--- lib/dev-utils/Cargo.toml | 2 +- lib/emscripten/Cargo.toml | 12 ++++++------ lib/llvm-backend/Cargo.toml | 4 ++-- lib/middleware-common/Cargo.toml | 8 ++++---- lib/runtime-abi/Cargo.toml | 2 +- lib/runtime-c-api/Cargo.toml | 6 +++--- lib/runtime-core/Cargo.toml | 2 +- lib/runtime/Cargo.toml | 8 ++++---- lib/singlepass-backend/Cargo.toml | 4 ++-- lib/spectests/Cargo.toml | 10 +++++----- lib/wasi/Cargo.toml | 10 +++++----- lib/win-exception-handler/Cargo.toml | 4 ++-- update_version_numbers.sh | 4 ++-- wapm-cli | 2 +- 17 files changed, 48 insertions(+), 43 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b23fbe2914..97db4ff5df8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All PRs to the Wasmer repository must add to this file. Blocks of changes will separated by version increments. ## **[Unreleased]** + +## 0.5.2 - 2019-07-02 +- [#521](https://github.com/wasmerio/wasmer/pull/521) Update Wapm-cli, bump version numbers +- [#518](https://github.com/wasmerio/wasmer/pull/518) Update Cranelift and WasmParser +- [#514](https://github.com/wasmerio/wasmer/pull/514) [#519](https://github.com/wasmerio/wasmer/pull/519) Improved Emscripten network related calls, added a null check to `WasmPtr` - [#515](https://github.com/wasmerio/wasmer/pull/515) Improved Emscripten dyncalls - [#513](https://github.com/wasmerio/wasmer/pull/513) Fix emscripten lseek implementation. - [#510](https://github.com/wasmerio/wasmer/pull/510) Simplify construction of floating point constants in LLVM backend. Fix LLVM assertion failure due to definition of %ctx. diff --git a/Cargo.toml b/Cargo.toml index e107d160595..ae38a191e45 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer" -version = "0.5.1" +version = "0.5.2" authors = ["The Wasmer Engineering Team "] edition = "2018" repository = "https://github.com/wasmerio/wasmer" diff --git a/lib/clif-backend/Cargo.toml b/lib/clif-backend/Cargo.toml index e6ce8f28560..20546a2ab7a 100644 --- a/lib/clif-backend/Cargo.toml +++ b/lib/clif-backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-clif-backend" -version = "0.5.1" +version = "0.5.2" description = "Wasmer runtime Cranelift compiler backend" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -8,7 +8,7 @@ repository = "https://github.com/wasmerio/wasmer" edition = "2018" [dependencies] -wasmer-runtime-core = { path = "../runtime-core", version = "0.5.1" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" } cranelift-native = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" } cranelift-codegen = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" } cranelift-entity = { git = "https://github.com/wasmerio/cranelift.git", rev = "2ada531d79b34a9e6c94c81f2615677e22d68780" } @@ -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.1" } +wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.5.2" } [features] debug = ["wasmer-runtime-core/debug"] diff --git a/lib/dev-utils/Cargo.toml b/lib/dev-utils/Cargo.toml index 1d4b3e925e8..f57bd0fcfa7 100644 --- a/lib/dev-utils/Cargo.toml +++ b/lib/dev-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-dev-utils" -version = "0.5.1" +version = "0.5.2" description = "Wasmer runtime core library" license = "MIT" authors = ["The Wasmer Engineering Team "] diff --git a/lib/emscripten/Cargo.toml b/lib/emscripten/Cargo.toml index e3b3f362a5e..66aa4e0cf9d 100644 --- a/lib/emscripten/Cargo.toml +++ b/lib/emscripten/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-emscripten" -version = "0.5.1" +version = "0.5.2" description = "Wasmer runtime emscripten implementation library" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -14,17 +14,17 @@ hashbrown = "0.1" lazy_static = "1.2.0" libc = "0.2.49" time = "0.1.41" -wasmer-clif-backend = { path = "../clif-backend", version = "0.5.1" } -wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.1", optional = true } -wasmer-runtime-core = { path = "../runtime-core", version = "0.5.1" } -wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.1", optional = true } +wasmer-clif-backend = { path = "../clif-backend", version = "0.5.2" } +wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.2", optional = true } +wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" } +wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true } [target.'cfg(windows)'.dependencies] rand = "0.6" [dev-dependencies] wabt = "0.7.2" -wasmer-dev-utils = { path = "../dev-utils", version = "0.5.1"} +wasmer-dev-utils = { path = "../dev-utils", version = "0.5.2"} [build-dependencies] glob = "0.2.11" diff --git a/lib/llvm-backend/Cargo.toml b/lib/llvm-backend/Cargo.toml index 5b0cac2b142..3b8fb492d5c 100644 --- a/lib/llvm-backend/Cargo.toml +++ b/lib/llvm-backend/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "wasmer-llvm-backend" -version = "0.5.1" +version = "0.5.2" authors = ["Lachlan Sneff "] edition = "2018" [dependencies] -wasmer-runtime-core = { path = "../runtime-core", version = "0.5.1" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" } inkwell = { git = "https://github.com/wasmerio/inkwell", branch = "llvm7-0" } wasmparser = "0.32.1" hashbrown = "0.1.8" diff --git a/lib/middleware-common/Cargo.toml b/lib/middleware-common/Cargo.toml index b96fed59c00..a57a572cb57 100644 --- a/lib/middleware-common/Cargo.toml +++ b/lib/middleware-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-middleware-common" -version = "0.5.1" +version = "0.5.2" repository = "https://github.com/wasmerio/wasmer" description = "Wasmer runtime common middlewares" license = "MIT" @@ -9,9 +9,9 @@ edition = "2018" [dependencies] wasmer-runtime-core = { path = "../runtime-core" } -wasmer-clif-backend = { path = "../clif-backend", version = "0.5.1" } -wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.1", optional = true } -wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.1", optional = true } +wasmer-clif-backend = { path = "../clif-backend", version = "0.5.2" } +wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.2", optional = true } +wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true } [dev-dependencies] wabt = "0.7.4" diff --git a/lib/runtime-abi/Cargo.toml b/lib/runtime-abi/Cargo.toml index be15a3a2ccf..9132e6076ee 100644 --- a/lib/runtime-abi/Cargo.toml +++ b/lib/runtime-abi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-runtime-abi" -version = "0.5.1" +version = "0.5.2" description = "Wasmer runtime core library" license = "MIT" authors = ["The Wasmer Engineering Team "] diff --git a/lib/runtime-c-api/Cargo.toml b/lib/runtime-c-api/Cargo.toml index 4bdd9e369c7..2a677ab707e 100644 --- a/lib/runtime-c-api/Cargo.toml +++ b/lib/runtime-c-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-runtime-c-api" -version = "0.5.1" +version = "0.5.2" description = "Wasmer C API library" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -16,11 +16,11 @@ libc = "0.2" [dependencies.wasmer-runtime] path = "../runtime" -version = "0.5.1" +version = "0.5.2" [dependencies.wasmer-runtime-core] path = "../runtime-core" -version = "0.5.1" +version = "0.5.2" [features] debug = ["wasmer-runtime/debug"] diff --git a/lib/runtime-core/Cargo.toml b/lib/runtime-core/Cargo.toml index 7f716aea403..a6e246aa05f 100644 --- a/lib/runtime-core/Cargo.toml +++ b/lib/runtime-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-runtime-core" -version = "0.5.1" +version = "0.5.2" description = "Wasmer runtime core library" license = "MIT" authors = ["The Wasmer Engineering Team "] diff --git a/lib/runtime/Cargo.toml b/lib/runtime/Cargo.toml index e7026aff850..e7438d0b53a 100644 --- a/lib/runtime/Cargo.toml +++ b/lib/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-runtime" -version = "0.5.1" +version = "0.5.2" description = "Wasmer runtime library" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -9,17 +9,17 @@ edition = "2018" readme = "README.md" [dependencies] -wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.1", optional = true } +wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true } lazy_static = "1.2.0" memmap = "0.7.0" [dependencies.wasmer-runtime-core] path = "../runtime-core" -version = "0.5.1" +version = "0.5.2" [dependencies.wasmer-clif-backend] path = "../clif-backend" -version = "0.5.1" +version = "0.5.2" optional = true [dev-dependencies] diff --git a/lib/singlepass-backend/Cargo.toml b/lib/singlepass-backend/Cargo.toml index c9302fb0f25..4e2c4d59f80 100644 --- a/lib/singlepass-backend/Cargo.toml +++ b/lib/singlepass-backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-singlepass-backend" -version = "0.5.1" +version = "0.5.2" repository = "https://github.com/wasmerio/wasmer" description = "Wasmer runtime single pass compiler backend" license = "MIT" @@ -8,7 +8,7 @@ authors = ["The Wasmer Engineering Team "] edition = "2018" [dependencies] -wasmer-runtime-core = { path = "../runtime-core", version = "0.5.1" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" } wasmparser = "0.32.1" dynasm = "0.3.2" dynasmrt = "0.3.1" diff --git a/lib/spectests/Cargo.toml b/lib/spectests/Cargo.toml index 654f51edf29..3b171ad0c71 100644 --- a/lib/spectests/Cargo.toml +++ b/lib/spectests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-spectests" -version = "0.5.1" +version = "0.5.2" description = "Wasmer spectests library" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -9,10 +9,10 @@ edition = "2018" build = "build/mod.rs" [dependencies] -wasmer-runtime-core = { path = "../runtime-core", version = "0.5.1" } -wasmer-clif-backend = { path = "../clif-backend", version = "0.5.1" } -wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.1", optional = true } -wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.1", optional = true } +wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" } +wasmer-clif-backend = { path = "../clif-backend", version = "0.5.2" } +wasmer-llvm-backend = { path = "../llvm-backend", version = "0.5.2", optional = true } +wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true } [build-dependencies] wabt = "0.7.2" diff --git a/lib/wasi/Cargo.toml b/lib/wasi/Cargo.toml index ccff8418e41..c8adfe6c30f 100644 --- a/lib/wasi/Cargo.toml +++ b/lib/wasi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasi" -version = "0.5.1" +version = "0.5.2" description = "Wasmer runtime WASI implementation library" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -9,7 +9,7 @@ edition = "2018" build = "build/mod.rs" [dependencies] -wasmer-runtime-core = { path = "../runtime-core", version = "0.5.1" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" } libc = "0.2.50" rand = "0.6.5" # wasmer-runtime-abi = { path = "../runtime-abi" } @@ -18,7 +18,7 @@ generational-arena = "0.2.2" log = "0.4.6" byteorder = "1.3.1" # hack to get tests to work -wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.1", optional = true } +wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.5.2", optional = true } [target.'cfg(windows)'.dependencies] winapi = "0.3" @@ -27,8 +27,8 @@ winapi = "0.3" glob = "0.2.11" [dev-dependencies] -wasmer-clif-backend = { path = "../clif-backend", version = "0.5.1" } -wasmer-dev-utils = { path = "../dev-utils", version = "0.5.1"} +wasmer-clif-backend = { path = "../clif-backend", version = "0.5.2" } +wasmer-dev-utils = { path = "../dev-utils", version = "0.5.2"} [features] clif = [] diff --git a/lib/win-exception-handler/Cargo.toml b/lib/win-exception-handler/Cargo.toml index 53955cc83e0..c8ad867d951 100644 --- a/lib/win-exception-handler/Cargo.toml +++ b/lib/win-exception-handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-win-exception-handler" -version = "0.5.1" +version = "0.5.2" description = "Wasmer runtime exception handling for Windows" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -8,7 +8,7 @@ repository = "https://github.com/wasmerio/wasmer" edition = "2018" [target.'cfg(windows)'.dependencies] -wasmer-runtime-core = { path = "../runtime-core", version = "0.5.1" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.5.2" } winapi = { version = "0.3", features = ["winbase", "errhandlingapi", "minwindef", "minwinbase", "winnt"] } libc = "0.2.49" diff --git a/update_version_numbers.sh b/update_version_numbers.sh index 10aa5cd7de0..8517c1c732e 100755 --- a/update_version_numbers.sh +++ b/update_version_numbers.sh @@ -1,5 +1,5 @@ -PREVIOUS_VERSION='0.5.0' -NEXT_VERSION='0.5.1' +PREVIOUS_VERSION='0.5.1' +NEXT_VERSION='0.5.2' # quick hack fd Cargo.toml --exec sed -i '' "s/version = \"$PREVIOUS_VERSION\"/version = \"$NEXT_VERSION\"/" diff --git a/wapm-cli b/wapm-cli index 9fa419885db..b3cc4f4d76a 160000 --- a/wapm-cli +++ b/wapm-cli @@ -1 +1 @@ -Subproject commit 9fa419885dbc041caffeae0ef3779fc6eae63868 +Subproject commit b3cc4f4d76af8ef80570e284c9d7c751d1ce1392