Skip to content

Commit

Permalink
Merge #2820
Browse files Browse the repository at this point in the history
2820: Release version 2.2.1 r=Amanieu a=Amanieu



Co-authored-by: Amanieu d'Antras <amanieu@gmail.com>
  • Loading branch information
bors[bot] and Amanieu committed Mar 15, 2022
2 parents 8b9af9b + fe9d2d8 commit c5c72b9
Show file tree
Hide file tree
Showing 33 changed files with 174 additions and 169 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,11 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C

## **Unreleased**

## 2.2.1 - 2022/03/15

### Fixed
- [#2812](https://github.com/wasmerio/wasmer/pull/2812) Fixed another panic due to incorrect drop ordering.

## 2.2.0 - 2022/02/28

### Added
Expand Down
56 changes: 28 additions & 28 deletions Cargo.lock

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

34 changes: 17 additions & 17 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasmer-workspace"
version = "2.2.0"
version = "2.2.1"
description = "Wasmer workspace"
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
repository = "https://github.com/wasmerio/wasmer"
Expand All @@ -10,22 +10,22 @@ publish = false
autoexamples = false

[dependencies]
wasmer = { version = "=2.2.0", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=2.2.0", path = "lib/compiler" }
wasmer-compiler-cranelift = { version = "=2.2.0", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=2.2.0", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=2.2.0", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=2.2.0", path = "lib/emscripten", optional = true }
wasmer-engine = { version = "=2.2.0", path = "lib/engine" }
wasmer-engine-universal = { version = "=2.2.0", path = "lib/engine-universal", optional = true }
wasmer-engine-dylib = { version = "=2.2.0", path = "lib/engine-dylib", optional = true }
wasmer-engine-staticlib = { version = "=2.2.0", path = "lib/engine-staticlib", optional = true }
wasmer-wasi = { version = "=2.2.0", path = "lib/wasi", optional = true }
wasmer-wast = { version = "=2.2.0", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=2.2.0", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=2.2.0", path = "lib/cache", optional = true }
wasmer-types = { version = "=2.2.0", path = "lib/types" }
wasmer-middlewares = { version = "=2.2.0", path = "lib/middlewares", optional = true }
wasmer = { version = "=2.2.1", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=2.2.1", path = "lib/compiler" }
wasmer-compiler-cranelift = { version = "=2.2.1", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=2.2.1", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=2.2.1", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=2.2.1", path = "lib/emscripten", optional = true }
wasmer-engine = { version = "=2.2.1", path = "lib/engine" }
wasmer-engine-universal = { version = "=2.2.1", path = "lib/engine-universal", optional = true }
wasmer-engine-dylib = { version = "=2.2.1", path = "lib/engine-dylib", optional = true }
wasmer-engine-staticlib = { version = "=2.2.1", path = "lib/engine-staticlib", optional = true }
wasmer-wasi = { version = "=2.2.1", path = "lib/wasi", optional = true }
wasmer-wast = { version = "=2.2.1", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=2.2.1", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=2.2.1", path = "lib/cache", optional = true }
wasmer-types = { version = "=2.2.1", path = "lib/types" }
wasmer-middlewares = { version = "=2.2.1", path = "lib/middlewares", optional = true }
cfg-if = "1.0"

[workspace]
Expand Down
26 changes: 13 additions & 13 deletions lib/api/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasmer"
version = "2.2.0"
version = "2.2.1"
description = "High-performance WebAssembly runtime"
categories = ["wasm"]
keywords = ["wasm", "webassembly", "runtime", "vm"]
Expand Down Expand Up @@ -32,19 +32,19 @@ wat = { version = "1.0", optional = true }
# Dependencies and Development Dependencies for `sys`.
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# - Mandatory dependencies for `sys`.
wasmer-vm = { path = "../vm", version = "=2.2.0" }
wasmer-compiler = { path = "../compiler", version = "=2.2.0" }
wasmer-derive = { path = "../derive", version = "=2.2.0" }
wasmer-engine = { path = "../engine", version = "=2.2.0" }
wasmer-types = { path = "../types", version = "=2.2.0" }
wasmer-vm = { path = "../vm", version = "=2.2.1" }
wasmer-compiler = { path = "../compiler", version = "=2.2.1" }
wasmer-derive = { path = "../derive", version = "=2.2.1" }
wasmer-engine = { path = "../engine", version = "=2.2.1" }
wasmer-types = { path = "../types", version = "=2.2.1" }
target-lexicon = { version = "0.12.2", default-features = false }
loupe = "0.1"
# - Optional dependencies for `sys`.
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=2.2.0", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=2.2.0", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=2.2.0", optional = true }
wasmer-engine-universal = { path = "../engine-universal", version = "=2.2.0", optional = true }
wasmer-engine-dylib = { path = "../engine-dylib", version = "=2.2.0", optional = true }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=2.2.1", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=2.2.1", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=2.2.1", optional = true }
wasmer-engine-universal = { path = "../engine-universal", version = "=2.2.1", optional = true }
wasmer-engine-dylib = { path = "../engine-dylib", version = "=2.2.1", optional = true }
# - Mandatory dependencies for `sys` on Windows.
[target.'cfg(all(not(target_arch = "wasm32"), target_os = "windows"))'.dependencies]
winapi = "0.3"
Expand All @@ -57,10 +57,10 @@ anyhow = "1.0"
# Dependencies and Develoment Dependencies for `js`.
[target.'cfg(target_arch = "wasm32")'.dependencies]
# - Mandatory dependencies for `js`.
wasmer-types = { path = "../types", version = "=2.2.0", default-features = false, features = ["std"] }
wasmer-types = { path = "../types", version = "=2.2.1", default-features = false, features = ["std"] }
wasm-bindgen = "0.2.74"
js-sys = "0.3.51"
wasmer-derive = { path = "../derive", version = "=2.2.0" }
wasmer-derive = { path = "../derive", version = "=2.2.1" }
# - Optional dependencies for `js`.
wasmparser = { version = "0.78", default-features = false, optional = true }
hashbrown = { version = "0.11", optional = true }
Expand Down
26 changes: 13 additions & 13 deletions lib/c-api/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "wasmer-c-api"
version = "2.2.0"
version = "2.2.1"
description = "Wasmer C API library"
categories = ["wasm", "api-bindings"]
keywords = ["wasm", "webassembly", "runtime"]
Expand All @@ -22,18 +22,18 @@ crate-type = ["cdylib", "rlib", "staticlib"]
[dependencies]
# We rename `wasmer` to `wasmer-api` to avoid the conflict with this
# library name (see `[lib]`).
wasmer-api = { version = "=2.2.0", path = "../api", default-features = false, features = ["sys"], package = "wasmer" }
wasmer-compiler-cranelift = { version = "=2.2.0", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=2.2.0", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=2.2.0", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=2.2.0", path = "../emscripten", optional = true }
wasmer-engine = { version = "=2.2.0", path = "../engine" }
wasmer-engine-universal = { version = "=2.2.0", path = "../engine-universal", optional = true }
wasmer-engine-dylib = { version = "=2.2.0", path = "../engine-dylib", optional = true }
wasmer-engine-staticlib = { version = "=2.2.0", path = "../engine-staticlib", optional = true }
wasmer-middlewares = { version = "=2.2.0", path = "../middlewares", optional = true }
wasmer-wasi = { version = "=2.2.0", path = "../wasi", default-features = false, features = ["host-fs", "sys"], optional = true }
wasmer-types = { version = "=2.2.0", path = "../types" }
wasmer-api = { version = "=2.2.1", path = "../api", default-features = false, features = ["sys"], package = "wasmer" }
wasmer-compiler-cranelift = { version = "=2.2.1", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=2.2.1", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=2.2.1", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=2.2.1", path = "../emscripten", optional = true }
wasmer-engine = { version = "=2.2.1", path = "../engine" }
wasmer-engine-universal = { version = "=2.2.1", path = "../engine-universal", optional = true }
wasmer-engine-dylib = { version = "=2.2.1", path = "../engine-dylib", optional = true }
wasmer-engine-staticlib = { version = "=2.2.1", path = "../engine-staticlib", optional = true }
wasmer-middlewares = { version = "=2.2.1", path = "../middlewares", optional = true }
wasmer-wasi = { version = "=2.2.1", path = "../wasi", default-features = false, features = ["host-fs", "sys"], optional = true }
wasmer-types = { version = "=2.2.1", path = "../types" }
enumset = "1.0"
cfg-if = "1.0"
lazy_static = "1.4"
Expand Down

0 comments on commit c5c72b9

Please sign in to comment.