From f3d4b5674688d5627cc0d14134ca9b4861d89f6b Mon Sep 17 00:00:00 2001 From: Mark McCaskey Date: Mon, 24 Feb 2020 11:05:09 -0800 Subject: [PATCH 1/3] Revert change of Ubuntu 18.04 to 16.04 --- azure-pipelines.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 25c9cb166..805f3b3cb 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -24,7 +24,7 @@ jobs: - job: clippy_lint pool: - vmImage: "ubuntu-18.04" + vmImage: "ubuntu-16.04" steps: - checkout: self - template: .azure/install-rust.yml @@ -44,7 +44,7 @@ jobs: strategy: matrix: linux: - imageName: "ubuntu-18.04" + imageName: "ubuntu-16.04" rust_toolchain: nightly-2019-12-19 mac: imageName: "macos-10.14" @@ -88,7 +88,7 @@ jobs: - job: Check pool: - vmImage: "ubuntu-18.04" + vmImage: "ubuntu-16.04" variables: rust_toolchain: nightly-2019-12-19 condition: in(variables['Build.SourceBranch'], 'refs/heads/master', 'refs/heads/staging', 'refs/heads/trying') @@ -106,7 +106,7 @@ jobs: strategy: matrix: linux: - imageName: "ubuntu-18.04" + imageName: "ubuntu-16.04" rust_toolchain: nightly-2019-12-19 mac: imageName: "macos-10.14" @@ -178,7 +178,7 @@ jobs: strategy: matrix: linux: - imageName: "ubuntu-18.04" + imageName: "ubuntu-16.04" rust_toolchain: nightly-2019-12-19 mac: imageName: "macos-10.14" @@ -234,7 +234,7 @@ jobs: - job: Build_Docs pool: - vmImage: "ubuntu-18.04" + vmImage: "ubuntu-16.04" variables: rust_toolchain: nightly-2019-12-19 condition: in(variables['Build.SourceBranch'], 'refs/heads/master', 'refs/heads/staging', 'refs/heads/trying') @@ -309,7 +309,7 @@ jobs: - Build_Docs displayName: Deploy API Documentation to GitHub pool: - vmImage: "ubuntu-18.04" + vmImage: "ubuntu-16.04" condition: in(variables['Build.SourceBranch'], 'refs/heads/master') steps: - checkout: self From ce2191007748f9ad3db538456a2541ab20e740c9 Mon Sep 17 00:00:00 2001 From: Mark McCaskey Date: Mon, 24 Feb 2020 13:17:15 -0800 Subject: [PATCH 2/3] Prepare for 0.14.1 release 0.14.1 differs from 0.14.0 primarily in that the GNU/Linux build is built on Ubuntu 16.04 instead of 18.04, meaning we'll use an earlier version of GLIBC. --- CHANGELOG.md | 3 ++ Cargo.lock | 38 ++++++++++----------- Cargo.toml | 2 +- lib/clif-backend/Cargo.toml | 6 ++-- lib/dev-utils/Cargo.toml | 2 +- lib/emscripten-tests/Cargo.toml | 14 ++++---- lib/emscripten/Cargo.toml | 4 +-- lib/interface-types/Cargo.toml | 4 +-- lib/llvm-backend-tests/Cargo.toml | 6 ++-- lib/llvm-backend/Cargo.toml | 4 +-- lib/middleware-common-tests/Cargo.toml | 12 +++---- lib/middleware-common/Cargo.toml | 4 +-- lib/runtime-c-api/Cargo.toml | 10 +++--- lib/runtime-core-tests/Cargo.toml | 10 +++--- lib/runtime-core/Cargo.toml | 2 +- lib/runtime/Cargo.toml | 8 ++--- lib/singlepass-backend/Cargo.toml | 4 +-- lib/spectests/Cargo.toml | 10 +++--- lib/wasi-experimental-io-devices/Cargo.toml | 6 ++-- lib/wasi-tests/Cargo.toml | 14 ++++---- lib/wasi/Cargo.toml | 4 +-- lib/win-exception-handler/Cargo.toml | 4 +-- scripts/update_version_numbers.sh | 4 +-- src/installer/wasmer.iss | 2 +- 24 files changed, 90 insertions(+), 87 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4e429cdf..6871ecb3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## **[Unreleased]** +## 0.14.1 - 2020-02-24 + +- [#1245](https://github.com/wasmerio/wasmer/pull/1245) Use Ubuntu 16.04 in CI so that we use an earlier version of GLIBC. - [#1234](https://github.com/wasmerio/wasmer/pull/1234) Check for unused excluded spectest failures. - [#1232](https://github.com/wasmerio/wasmer/pull/1232) `wasmer-interface-types` has a WAT decoder. diff --git a/Cargo.lock b/Cargo.lock index 9e48a567d..a8faaeaf7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1712,7 +1712,7 @@ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" [[package]] name = "wasmer" -version = "0.14.0" +version = "0.14.1" dependencies = [ "atty", "byteorder", @@ -1743,7 +1743,7 @@ dependencies = [ [[package]] name = "wasmer-clif-backend" -version = "0.14.0" +version = "0.14.1" dependencies = [ "byteorder", "cranelift-codegen", @@ -1793,14 +1793,14 @@ dependencies = [ [[package]] name = "wasmer-dev-utils" -version = "0.14.0" +version = "0.14.1" dependencies = [ "libc", ] [[package]] name = "wasmer-emscripten" -version = "0.14.0" +version = "0.14.1" dependencies = [ "byteorder", "getrandom", @@ -1813,7 +1813,7 @@ dependencies = [ [[package]] name = "wasmer-emscripten-tests" -version = "0.14.0" +version = "0.14.1" dependencies = [ "glob 0.3.0", "wabt", @@ -1827,7 +1827,7 @@ dependencies = [ [[package]] name = "wasmer-interface-types" -version = "0.14.0" +version = "0.14.1" dependencies = [ "nom", "wast", @@ -1843,7 +1843,7 @@ dependencies = [ [[package]] name = "wasmer-llvm-backend" -version = "0.14.0" +version = "0.14.1" dependencies = [ "byteorder", "cc", @@ -1874,14 +1874,14 @@ dependencies = [ [[package]] name = "wasmer-middleware-common" -version = "0.14.0" +version = "0.14.1" dependencies = [ "wasmer-runtime-core", ] [[package]] name = "wasmer-middleware-common-tests" -version = "0.14.0" +version = "0.14.1" dependencies = [ "criterion", "wabt", @@ -1894,7 +1894,7 @@ dependencies = [ [[package]] name = "wasmer-runtime" -version = "0.14.0" +version = "0.14.1" dependencies = [ "criterion", "lazy_static", @@ -1911,7 +1911,7 @@ dependencies = [ [[package]] name = "wasmer-runtime-c-api" -version = "0.14.0" +version = "0.14.1" dependencies = [ "cbindgen", "libc", @@ -1923,7 +1923,7 @@ dependencies = [ [[package]] name = "wasmer-runtime-core" -version = "0.14.0" +version = "0.14.1" dependencies = [ "bincode", "blake3", @@ -1949,7 +1949,7 @@ dependencies = [ [[package]] name = "wasmer-runtime-core-tests" -version = "0.14.0" +version = "0.14.1" dependencies = [ "wabt", "wasmer-clif-backend", @@ -1960,7 +1960,7 @@ dependencies = [ [[package]] name = "wasmer-singlepass-backend" -version = "0.14.0" +version = "0.14.1" dependencies = [ "bincode", "byteorder", @@ -1977,7 +1977,7 @@ dependencies = [ [[package]] name = "wasmer-spectests" -version = "0.14.0" +version = "0.14.1" dependencies = [ "glob 0.3.0", "wabt", @@ -1989,7 +1989,7 @@ dependencies = [ [[package]] name = "wasmer-wasi" -version = "0.14.0" +version = "0.14.1" dependencies = [ "bincode", "byteorder", @@ -2006,7 +2006,7 @@ dependencies = [ [[package]] name = "wasmer-wasi-experimental-io-devices" -version = "0.14.0" +version = "0.14.1" dependencies = [ "log", "minifb", @@ -2019,7 +2019,7 @@ dependencies = [ [[package]] name = "wasmer-wasi-tests" -version = "0.14.0" +version = "0.14.1" dependencies = [ "glob 0.3.0", "wasmer-clif-backend", @@ -2032,7 +2032,7 @@ dependencies = [ [[package]] name = "wasmer-win-exception-handler" -version = "0.14.0" +version = "0.14.1" dependencies = [ "cmake", "libc", diff --git a/Cargo.toml b/Cargo.toml index fb135aba7..585b4178f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer" -version = "0.14.0" +version = "0.14.1" 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 cffab51ff..106353ac9 100644 --- a/lib/clif-backend/Cargo.toml +++ b/lib/clif-backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-clif-backend" -version = "0.14.0" +version = "0.14.1" description = "Wasmer runtime Cranelift compiler backend" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -11,7 +11,7 @@ edition = "2018" readme = "README.md" [dependencies] -wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.14.1" } cranelift-native = "0.52.0" cranelift-codegen = "0.52.0" cranelift-entity = "0.52.0" @@ -37,4 +37,4 @@ 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.14.0" } +wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.14.1" } diff --git a/lib/dev-utils/Cargo.toml b/lib/dev-utils/Cargo.toml index aa39fda03..1d418a4cc 100644 --- a/lib/dev-utils/Cargo.toml +++ b/lib/dev-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-dev-utils" -version = "0.14.0" +version = "0.14.1" description = "Wasmer runtime core library" license = "MIT" authors = ["The Wasmer Engineering Team "] diff --git a/lib/emscripten-tests/Cargo.toml b/lib/emscripten-tests/Cargo.toml index 217c2ae23..0b4710130 100644 --- a/lib/emscripten-tests/Cargo.toml +++ b/lib/emscripten-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-emscripten-tests" -version = "0.14.0" +version = "0.14.1" description = "Tests for our Emscripten implementation" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -9,15 +9,15 @@ publish = false build = "build/mod.rs" [dependencies] -wasmer-emscripten = { path = "../emscripten", version = "0.14.0" } -wasmer-runtime = { path = "../runtime", version = "0.14.0", default-features = false } -wasmer-clif-backend = { path = "../clif-backend", version = "0.14.0", optional = true} -wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.0", optional = true, features = ["test"] } -wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.0", optional = true } +wasmer-emscripten = { path = "../emscripten", version = "0.14.1" } +wasmer-runtime = { path = "../runtime", version = "0.14.1", default-features = false } +wasmer-clif-backend = { path = "../clif-backend", version = "0.14.1", optional = true} +wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.1", optional = true, features = ["test"] } +wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.1", optional = true } [dev-dependencies] wabt = "0.9.1" -wasmer-dev-utils = { path = "../dev-utils", version = "0.14.0"} +wasmer-dev-utils = { path = "../dev-utils", version = "0.14.1"} [build-dependencies] glob = "0.3" diff --git a/lib/emscripten/Cargo.toml b/lib/emscripten/Cargo.toml index 80e578bfd..3a4b790ed 100644 --- a/lib/emscripten/Cargo.toml +++ b/lib/emscripten/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-emscripten" -version = "0.14.0" +version = "0.14.1" description = "Wasmer runtime emscripten implementation library" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -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.14.0" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.14.1" } [target.'cfg(windows)'.dependencies] getrandom = "0.1" diff --git a/lib/interface-types/Cargo.toml b/lib/interface-types/Cargo.toml index 7ab8ef1ca..e7b46a12d 100644 --- a/lib/interface-types/Cargo.toml +++ b/lib/interface-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-interface-types" -version = "0.14.0" +version = "0.14.1" description = "WebAssembly Interface Types library for Wasmer" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -9,4 +9,4 @@ edition = "2018" [dependencies] nom = "5.1" -wast = "8.0" \ No newline at end of file +wast = "8.0" diff --git a/lib/llvm-backend-tests/Cargo.toml b/lib/llvm-backend-tests/Cargo.toml index 5bdd72cc5..fbfda02d0 100644 --- a/lib/llvm-backend-tests/Cargo.toml +++ b/lib/llvm-backend-tests/Cargo.toml @@ -9,8 +9,8 @@ edition = "2018" [dependencies] wabt = "0.9.1" -wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" } -wasmer-runtime = { path = "../runtime", version = "0.14.0" } -wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.0", features = ["test"] } +wasmer-runtime-core = { path = "../runtime-core", version = "0.14.1" } +wasmer-runtime = { path = "../runtime", version = "0.14.1" } +wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.1", features = ["test"] } [features] diff --git a/lib/llvm-backend/Cargo.toml b/lib/llvm-backend/Cargo.toml index 1df4e67be..418ac7c3f 100644 --- a/lib/llvm-backend/Cargo.toml +++ b/lib/llvm-backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-llvm-backend" -version = "0.14.0" +version = "0.14.1" license = "MIT" authors = ["The Wasmer Engineering Team "] repository = "https://github.com/wasmerio/wasmer" @@ -10,7 +10,7 @@ edition = "2018" readme = "README.md" [dependencies] -wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.14.1" } wasmparser = "0.45.0" smallvec = "0.6" goblin = "0.0.24" diff --git a/lib/middleware-common-tests/Cargo.toml b/lib/middleware-common-tests/Cargo.toml index 329b71ccc..c66f51826 100644 --- a/lib/middleware-common-tests/Cargo.toml +++ b/lib/middleware-common-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-middleware-common-tests" -version = "0.14.0" +version = "0.14.1" authors = ["The Wasmer Engineering Team "] edition = "2018" repository = "https://github.com/wasmerio/wasmer" @@ -8,11 +8,11 @@ license = "MIT" publish = false [dependencies] -wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" } -wasmer-middleware-common = { path = "../middleware-common", version = "0.14.0" } -wasmer-clif-backend = { path = "../clif-backend", version = "0.14.0", optional = true } -wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.0", features = ["test"], optional = true } -wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.0", optional = true } +wasmer-runtime-core = { path = "../runtime-core", version = "0.14.1" } +wasmer-middleware-common = { path = "../middleware-common", version = "0.14.1" } +wasmer-clif-backend = { path = "../clif-backend", version = "0.14.1", optional = true } +wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.1", features = ["test"], optional = true } +wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.1", optional = true } [features] clif = ["wasmer-clif-backend"] diff --git a/lib/middleware-common/Cargo.toml b/lib/middleware-common/Cargo.toml index a997bbc44..31707372f 100644 --- a/lib/middleware-common/Cargo.toml +++ b/lib/middleware-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-middleware-common" -version = "0.14.0" +version = "0.14.1" repository = "https://github.com/wasmerio/wasmer" description = "Wasmer runtime common middlewares" license = "MIT" @@ -10,4 +10,4 @@ categories = ["wasm"] edition = "2018" [dependencies] -wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.14.1" } diff --git a/lib/runtime-c-api/Cargo.toml b/lib/runtime-c-api/Cargo.toml index 8744e7266..3ba6fd94b 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.14.0" +version = "0.14.1" description = "Wasmer C API library" documentation = "https://wasmerio.github.io/wasmer/c/runtime-c-api/" license = "MIT" @@ -20,22 +20,22 @@ libc = "0.2.60" [dependencies.wasmer-runtime] default-features = false path = "../runtime" -version = "0.14.0" +version = "0.14.1" [dependencies.wasmer-runtime-core] default-features = false path = "../runtime-core" -version = "0.14.0" +version = "0.14.1" [dependencies.wasmer-wasi] default-features = false path = "../wasi" -version = "0.14.0" +version = "0.14.1" optional = true [dependencies.wasmer-emscripten] path = "../emscripten" -version = "0.14.0" +version = "0.14.1" optional = true [features] diff --git a/lib/runtime-core-tests/Cargo.toml b/lib/runtime-core-tests/Cargo.toml index cb6d6b25c..8697caada 100644 --- a/lib/runtime-core-tests/Cargo.toml +++ b/lib/runtime-core-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-runtime-core-tests" -version = "0.14.0" +version = "0.14.1" description = "Tests for the Wasmer runtime core crate" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -9,10 +9,10 @@ publish = false [dependencies] wabt = "0.9.1" -wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" } -wasmer-clif-backend = { path = "../clif-backend", version = "0.14.0", optional = true } -wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.0", optional = true } -wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.0", features = ["test"], optional = true } +wasmer-runtime-core = { path = "../runtime-core", version = "0.14.1" } +wasmer-clif-backend = { path = "../clif-backend", version = "0.14.1", optional = true } +wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.1", optional = true } +wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.1", features = ["test"], optional = true } [features] default = ["backend-cranelift"] diff --git a/lib/runtime-core/Cargo.toml b/lib/runtime-core/Cargo.toml index 6ad0e7b7c..787d99a6a 100644 --- a/lib/runtime-core/Cargo.toml +++ b/lib/runtime-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-runtime-core" -version = "0.14.0" +version = "0.14.1" 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 bd4194cf6..f9c6ec31a 100644 --- a/lib/runtime/Cargo.toml +++ b/lib/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-runtime" -version = "0.14.0" +version = "0.14.1" description = "Wasmer runtime library" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -11,17 +11,17 @@ edition = "2018" readme = "README.md" [dependencies] -wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.0", optional = true } +wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.1", optional = true } lazy_static = "1.4" memmap = "0.7" [dependencies.wasmer-runtime-core] path = "../runtime-core" -version = "0.14.0" +version = "0.14.1" [dependencies.wasmer-clif-backend] path = "../clif-backend" -version = "0.14.0" +version = "0.14.1" optional = true # Dependencies for caching. diff --git a/lib/singlepass-backend/Cargo.toml b/lib/singlepass-backend/Cargo.toml index e86c36ab2..e86e0b8d1 100644 --- a/lib/singlepass-backend/Cargo.toml +++ b/lib/singlepass-backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-singlepass-backend" -version = "0.14.0" +version = "0.14.1" repository = "https://github.com/wasmerio/wasmer" description = "Wasmer runtime single pass compiler backend" license = "MIT" @@ -11,7 +11,7 @@ edition = "2018" readme = "README.md" [dependencies] -wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.14.1" } dynasm = "0.5" dynasmrt = "0.5" lazy_static = "1.4" diff --git a/lib/spectests/Cargo.toml b/lib/spectests/Cargo.toml index d5bdd9717..7d88e3e7a 100644 --- a/lib/spectests/Cargo.toml +++ b/lib/spectests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-spectests" -version = "0.14.0" +version = "0.14.1" description = "Wasmer spectests library" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -9,10 +9,10 @@ edition = "2018" [dependencies] glob = "0.3" -wasmer-runtime = { path = "../runtime", version = "0.14.0", default-features = false} -wasmer-clif-backend = { path = "../clif-backend", version = "0.14.0", optional = true} -wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.0", features = ["test"], optional = true } -wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.0", optional = true } +wasmer-runtime = { path = "../runtime", version = "0.14.1", default-features = false} +wasmer-clif-backend = { path = "../clif-backend", version = "0.14.1", optional = true} +wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.1", features = ["test"], optional = true } +wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.1", optional = true } [build-dependencies] wabt = "0.9.1" diff --git a/lib/wasi-experimental-io-devices/Cargo.toml b/lib/wasi-experimental-io-devices/Cargo.toml index bbce57713..d29d30379 100644 --- a/lib/wasi-experimental-io-devices/Cargo.toml +++ b/lib/wasi-experimental-io-devices/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasi-experimental-io-devices" -version = "0.14.0" +version = "0.14.1" authors = ["The Wasmer Engineering Team "] 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.14.0", path = "../wasi" } -wasmer-runtime-core = { version = "0.14.0", path = "../runtime-core" } +wasmer-wasi = { version = "0.14.1", path = "../wasi" } +wasmer-runtime-core = { version = "0.14.1", path = "../runtime-core" } ref_thread_local = "0.0" serde = "1" typetag = "0.1" diff --git a/lib/wasi-tests/Cargo.toml b/lib/wasi-tests/Cargo.toml index b4fa7915b..e93d4d9cd 100644 --- a/lib/wasi-tests/Cargo.toml +++ b/lib/wasi-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasi-tests" -version = "0.14.0" +version = "0.14.1" description = "Tests for our WASI implementation" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -10,18 +10,18 @@ build = "build/mod.rs" [dependencies] # We set default features to false to be able to use the singlepass backend properly -wasmer-runtime = { path = "../runtime", version = "0.14.0", default-features = false } -wasmer-wasi = { path = "../wasi", version = "0.14.0" } +wasmer-runtime = { path = "../runtime", version = "0.14.1", default-features = false } +wasmer-wasi = { path = "../wasi", version = "0.14.1" } # hack to get tests to work -wasmer-clif-backend = { path = "../clif-backend", version = "0.14.0", optional = true} -wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.0", optional = true } -wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.0", features = ["test"], optional = true } +wasmer-clif-backend = { path = "../clif-backend", version = "0.14.1", optional = true} +wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.14.1", optional = true } +wasmer-llvm-backend = { path = "../llvm-backend", version = "0.14.1", features = ["test"], optional = true } [build-dependencies] glob = "0.3" [dev-dependencies] -wasmer-dev-utils = { path = "../dev-utils", version = "0.14.0"} +wasmer-dev-utils = { path = "../dev-utils", version = "0.14.1"} [features] clif = ["wasmer-clif-backend", "wasmer-runtime/default-backend-cranelift"] diff --git a/lib/wasi/Cargo.toml b/lib/wasi/Cargo.toml index 4dd5a6dbf..ce7669475 100644 --- a/lib/wasi/Cargo.toml +++ b/lib/wasi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasi" -version = "0.14.0" +version = "0.14.1" description = "Wasmer runtime WASI implementation library" license = "MIT" authors = ["The Wasmer Engineering Team "] @@ -19,7 +19,7 @@ getrandom = "0.1" time = "0.1" typetag = "0.1" serde = { version = "1", features = ["derive"] } -wasmer-runtime-core = { path = "../runtime-core", version = "0.14.0" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.14.1" } [target.'cfg(windows)'.dependencies] winapi = "0.3" diff --git a/lib/win-exception-handler/Cargo.toml b/lib/win-exception-handler/Cargo.toml index 95504170a..a221815a7 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.14.0" +version = "0.14.1" 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.14.0" } +wasmer-runtime-core = { path = "../runtime-core", version = "0.14.1" } winapi = { version = "0.3.8", features = ["winbase", "errhandlingapi", "minwindef", "minwinbase", "winnt"] } libc = "0.2.60" diff --git a/scripts/update_version_numbers.sh b/scripts/update_version_numbers.sh index 21e6cdd66..9fd20ae24 100755 --- a/scripts/update_version_numbers.sh +++ b/scripts/update_version_numbers.sh @@ -1,5 +1,5 @@ -PREVIOUS_VERSION='0.13.1' -NEXT_VERSION='0.14.0' +PREVIOUS_VERSION='0.14.0' +NEXT_VERSION='0.14.1' # quick hack fd Cargo.toml --exec sed -i '' "s/version = \"$PREVIOUS_VERSION\"/version = \"$NEXT_VERSION\"/" diff --git a/src/installer/wasmer.iss b/src/installer/wasmer.iss index 0ddf11414..3bb42cacd 100644 --- a/src/installer/wasmer.iss +++ b/src/installer/wasmer.iss @@ -1,6 +1,6 @@ [Setup] AppName=Wasmer -AppVersion=0.14.0 +AppVersion=0.14.1 DefaultDirName={pf}\Wasmer DefaultGroupName=Wasmer Compression=lzma2 From 1bc6565935c64a54e0ebb749ef5e6b9cf198cd93 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 24 Feb 2020 21:45:50 +0000 Subject: [PATCH 3/3] chore(deps): bump smallvec from 0.6.13 to 1.2.0 Bumps [smallvec](https://github.com/servo/rust-smallvec) from 0.6.13 to 1.2.0. - [Release notes](https://github.com/servo/rust-smallvec/releases) - [Commits](https://github.com/servo/rust-smallvec/compare/v0.6.13...v1.2.0) Signed-off-by: dependabot-preview[bot] --- Cargo.lock | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a8faaeaf7..82c04e1fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -240,7 +240,7 @@ dependencies = [ "cranelift-codegen-shared", "cranelift-entity", "log", - "smallvec 1.2.0", + "smallvec", "target-lexicon", "thiserror", ] @@ -926,7 +926,7 @@ dependencies = [ "cloudabi", "libc", "redox_syscall", - "smallvec 1.2.0", + "smallvec", "winapi", ] @@ -1414,15 +1414,6 @@ dependencies = [ "serde", ] -[[package]] -name = "smallvec" -version = "0.6.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7b0758c52e15a8b5e3691eae6cc559f08eee9406e548a4477ba4e67770a82b6" -dependencies = [ - "maybe-uninit", -] - [[package]] name = "smallvec" version = "1.2.0" @@ -1773,7 +1764,7 @@ checksum = "6d2e13201ef9ef527ad30a6bf1b08e3e024a40cf2731f393d80375dc88506207" dependencies = [ "cranelift-codegen", "log", - "smallvec 1.2.0", + "smallvec", "target-lexicon", ] @@ -1855,7 +1846,7 @@ dependencies = [ "regex", "rustc_version", "semver", - "smallvec 0.6.13", + "smallvec", "wabt", "wasmer-runtime-core", "wasmparser", @@ -1942,7 +1933,7 @@ dependencies = [ "serde-bench", "serde_bytes", "serde_derive", - "smallvec 0.6.13", + "smallvec", "wasmparser", "winapi", ] @@ -1971,7 +1962,7 @@ dependencies = [ "nix", "serde", "serde_derive", - "smallvec 0.6.13", + "smallvec", "wasmer-runtime-core", ]