Skip to content

Commit

Permalink
Merge pull request #3327 from wasmerio/release-3.0.0-rc.3
Browse files Browse the repository at this point in the history
Release 3.0.0-rc.3
  • Loading branch information
fschutt authored Nov 18, 2022
2 parents 58d8415 + 0ed1b0d commit 118b49e
Show file tree
Hide file tree
Showing 38 changed files with 299 additions and 295 deletions.
29 changes: 27 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,39 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C

## Added

- [#3317](https://github.com/wasmerio/wasmer/pull/3317) Add a `wasmer add` command for adding bindings for a WAPM package to your project (only Python and JavaScript are supported for now)
## Changed

## Fixed

## 3.0.0-rc.3 - 2022/11/18

## Added

- (#3314)[https://github.com/wasmerio/wasmer/pull/3314] Add windows-gnu workflow
- (#3317)[https://github.com/wasmerio/wasmer/pull/3317] Add a `wasmer add` command for adding bindings to a WAPM package
- (#3297)[https://github.com/wasmerio/wasmer/pull/3297] Implement wasmer login
- (#3311)[https://github.com/wasmerio/wasmer/pull/3311] Export Module::IoCompileError as it's an error returned by an exported function

## Changed

- [#3318](https://github.com/wasmerio/wasmer/pull/3318) Bump the Minimum Supported Rust Version (MSRV) to 1.63
- (#3319)[https://github.com/wasmerio/wasmer/pull/3319] Disable 'Test integration CLI' on CI for the Windows platform as it's not working at all
- (#3318)[https://github.com/wasmerio/wasmer/pull/3318] Bump the MSRV to 1.63
- (#3293)[https://github.com/wasmerio/wasmer/pull/3293] Removed call to to_vec() on assembler.finalise()
- (#3288)[https://github.com/wasmerio/wasmer/pull/3288] Rollback all the TARGET_DIR changes
- (#3284)[https://github.com/wasmerio/wasmer/pull/3284] Makefile now handle TARGET_DIR env. var. for build too
- (#3276)[https://github.com/wasmerio/wasmer/pull/3276] Remove unnecessary checks to test internet connection
- (#3275)[https://github.com/wasmerio/wasmer/pull/3275] Disable printing "local package ... not found" in release mode
- (#3273)[https://github.com/wasmerio/wasmer/pull/3273] Undo Makefile commit

## Fixed

- (#3299)[https://github.com/wasmerio/wasmer/pull/3299] Fix "create-exe" for windows-x86_64 target
- (#3294)[https://github.com/wasmerio/wasmer/pull/3294] Fix test sys yaml syntax
- (#3287)[https://github.com/wasmerio/wasmer/pull/3287] Fix Makefile with TARGET_DIR end with release folder, removing it
- (#3286)[https://github.com/wasmerio/wasmer/pull/3286] Fix Makefile with TARGET_DIR end with release folder
- (#3285)[https://github.com/wasmerio/wasmer/pull/3285] Fix CI to setup TARGET_DIR to target/release directly
- (#3277)[https://github.com/wasmerio/wasmer/pull/3277] Fix red CI on master

## 3.0.0-rc.2 - 2022/11/02

## Fixed
Expand Down
63 changes: 31 additions & 32 deletions Cargo.lock

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

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-workspace"
version = "3.0.0-rc.2"
version = "3.0.0-rc.3"
description = "Wasmer workspace"
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
repository = "https://github.com/wasmerio/wasmer"
Expand All @@ -10,18 +10,18 @@ publish = false
autoexamples = false

[dependencies]
wasmer = { version = "=3.0.0-rc.2", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=3.0.0-rc.2", path = "lib/compiler", features = ["compiler"] }
wasmer-compiler-cranelift = { version = "=3.0.0-rc.2", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=3.0.0-rc.2", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=3.0.0-rc.2", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=3.0.0-rc.2", path = "lib/emscripten", optional = true }
wasmer-wasi = { version = "=3.0.0-rc.2", path = "lib/wasi", optional = true }
wasmer-wast = { version = "=3.0.0-rc.2", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=3.0.0-rc.2", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=3.0.0-rc.2", path = "lib/cache", optional = true }
wasmer-types = { version = "=3.0.0-rc.2", path = "lib/types" }
wasmer-middlewares = { version = "=3.0.0-rc.2", path = "lib/middlewares", optional = true }
wasmer = { version = "=3.0.0-rc.3", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=3.0.0-rc.3", path = "lib/compiler", features = ["compiler"] }
wasmer-compiler-cranelift = { version = "=3.0.0-rc.3", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=3.0.0-rc.3", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=3.0.0-rc.3", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=3.0.0-rc.3", path = "lib/emscripten", optional = true }
wasmer-wasi = { version = "=3.0.0-rc.3", path = "lib/wasi", optional = true }
wasmer-wast = { version = "=3.0.0-rc.3", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=3.0.0-rc.3", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=3.0.0-rc.3", path = "lib/cache", optional = true }
wasmer-types = { version = "=3.0.0-rc.3", path = "lib/types" }
wasmer-middlewares = { version = "=3.0.0-rc.3", path = "lib/middlewares", optional = true }
cfg-if = "1.0"

[workspace]
Expand Down Expand Up @@ -68,7 +68,7 @@ glob = "0.3"
rustc_version = "0.4"

[dev-dependencies]
wasmer = { version = "=3.0.0-rc.2", path = "lib/api", default-features = false, features = ["cranelift"] }
wasmer = { version = "=3.0.0-rc.3", path = "lib/api", default-features = false, features = ["cranelift"] }
anyhow = "1.0"
criterion = "0.3"
lazy_static = "1.4"
Expand Down
Loading

0 comments on commit 118b49e

Please sign in to comment.