Skip to content

Commit

Permalink
Merge #2770
Browse files Browse the repository at this point in the history
2770: Release version 2.2.0-rc1 r=Amanieu a=Amanieu



Co-authored-by: Amanieu d'Antras <[email protected]>
  • Loading branch information
bors[bot] and Amanieu committed Jan 28, 2022
2 parents 42059f7 + 4e27e11 commit 9291c27
Show file tree
Hide file tree
Showing 33 changed files with 194 additions and 180 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,25 @@

Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/CHANGELOG.md).

## **[Unreleased]**
## **Unreleased**

## 2.2.0-rc1 - 2022/01/28

### Added
- [#2750](https://github.com/wasmerio/wasmer/pull/2750) Added Aarch64 support to Singlepass (both Linux and macOS).
- [#2753](https://github.com/wasmerio/wasmer/pull/2753) Re-add "dylib" to the list of default features.

### Changed
- [#2747](https://github.com/wasmerio/wasmer/pull/2747) Use a standard header for metadata in all serialized modules.
- [#2759](https://github.com/wasmerio/wasmer/pull/2759) Use exact version for Wasmer crate dependencies.

### Fixed
- [#2769](https://github.com/wasmerio/wasmer/pull/2769) Deadlock in emscripten dynamic calls
- [#2769](https://github.com/wasmerio/wasmer/pull/2769) Fixed deadlock in emscripten dynamic calls.
- [#2742](https://github.com/wasmerio/wasmer/pull/2742) Fixed WASMER_METADATA alignment in the dylib engine.
- [#2746](https://github.com/wasmerio/wasmer/pull/2746) Fixed invoking `wasmer binfmt register` from `$PATH`.
- [#2748](https://github.com/wasmerio/wasmer/pull/2748) Use trampolines for all libcalls in engine-universal and engine-dylib.
- [#2766](https://github.com/wasmerio/wasmer/pull/2766) Remove an attempt to reserve a GPR when no GPR clobbering is occurring.
- [#2768](https://github.com/wasmerio/wasmer/pull/2768) Fixed serialization of FrameInfo on Dylib engine.

## 2.1.1 - 2021/12/20

Expand Down
68 changes: 34 additions & 34 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-workspace"
version = "2.1.1"
version = "2.2.0-rc1"
description = "Wasmer workspace"
authors = ["Wasmer Engineering Team <[email protected]>"]
repository = "https://github.com/wasmerio/wasmer"
Expand All @@ -10,22 +10,22 @@ publish = false
autoexamples = false

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

[workspace]
Expand Down
Loading

0 comments on commit 9291c27

Please sign in to comment.