Skip to content

Commit

Permalink
Merge pull request #4924 from wasmerio/release-4.3.4
Browse files Browse the repository at this point in the history
Release 4.3.4
  • Loading branch information
maminrayej authored Jul 8, 2024
2 parents 3a098eb + 41e114f commit 9ef28e9
Show file tree
Hide file tree
Showing 32 changed files with 162 additions and 145 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,23 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C

## **Unreleased**

## 4.3.4 - 08/07/2024

This release contains a fix for the webc version resolution logic.

## Added

- [#4914](https://github.com/wasmerio/wasmer/pull/4914) Add tests for `msync`

## Changed


## Fixed

- [#4922](https://github.com/wasmerio/wasmer/pull/4922) fix(wasix): Fix incorrect webc version mapping



## 4.3.3 - 04/07/2024

This release mainly contains fixes and refactors to help with the stability. Also some improvements to the cli and journaling.
Expand Down
62 changes: 31 additions & 31 deletions Cargo.lock

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

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ rust-version.workspace = true
version.workspace = true

[dependencies]
wasmer = { version = "=4.3.3", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=4.3.3", path = "lib/compiler", features = [
wasmer = { version = "=4.3.4", path = "lib/api", default-features = false }
wasmer-compiler = { version = "=4.3.4", path = "lib/compiler", features = [
"compiler",
], optional = true }
wasmer-compiler-cranelift = { version = "=4.3.3", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=4.3.3", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=4.3.3", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=4.3.3", path = "lib/emscripten", optional = true }
wasmer-compiler-cranelift = { version = "=4.3.4", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=4.3.4", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=4.3.4", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "=4.3.4", path = "lib/emscripten", optional = true }
wasmer-wasix = { path = "lib/wasix", optional = true }
wasmer-wast = { version = "=4.3.3", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=4.3.3", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=4.3.3", path = "lib/cache", optional = true }
wasmer-types = { version = "=4.3.3", path = "lib/types" }
wasmer-middlewares = { version = "=4.3.3", path = "lib/middlewares", optional = true }
wasmer-wast = { version = "=4.3.4", path = "tests/lib/wast", optional = true }
wasi-test-generator = { version = "=4.3.4", path = "tests/wasi-wast", optional = true }
wasmer-cache = { version = "=4.3.4", path = "lib/cache", optional = true }
wasmer-types = { version = "=4.3.4", path = "lib/types" }
wasmer-middlewares = { version = "=4.3.4", path = "lib/middlewares", optional = true }

# Third party dependencies
cfg-if = "1.0"
Expand Down Expand Up @@ -84,7 +84,7 @@ homepage = "https://wasmer.io/"
license = "MIT"
repository = "https://github.com/wasmerio/wasmer"
rust-version = "1.74"
version = "4.3.3"
version = "4.3.4"

[workspace.dependencies]
# Repo-local crates
Expand Down Expand Up @@ -115,7 +115,7 @@ glob = "0.3"
rustc_version = "0.4"

[dev-dependencies]
wasmer = { version = "=4.3.3", path = "lib/api", features = [
wasmer = { version = "=4.3.4", path = "lib/api", features = [
"compiler",
"singlepass",
"sys",
Expand Down
22 changes: 11 additions & 11 deletions lib/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ shared-buffer = { workspace = true }
# Dependencies and Development Dependencies for `sys`.
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
# - Mandatory dependencies for `sys`.
wasmer-vm = { path = "../vm", version = "=4.3.3" }
wasmer-compiler = { path = "../compiler", version = "=4.3.3" }
wasmer-derive = { path = "../derive", version = "=4.3.3" }
wasmer-types = { path = "../types", version = "=4.3.3" }
wasmer-vm = { path = "../vm", version = "=4.3.4" }
wasmer-compiler = { path = "../compiler", version = "=4.3.4" }
wasmer-derive = { path = "../derive", version = "=4.3.4" }
wasmer-types = { path = "../types", version = "=4.3.4" }
target-lexicon = { version = "0.12.2", default-features = false }
# - Optional dependencies for `sys`.
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=4.3.3", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=4.3.3", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=4.3.3", optional = true }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=4.3.4", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=4.3.4", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=4.3.4", optional = true }

wasm-bindgen = { version = "0.2.74", optional = true }
js-sys = { version = "0.3.51", optional = true }
Expand All @@ -62,15 +62,15 @@ winapi = "0.3"
wat = "1.0"
tempfile = "3.6.0"
anyhow = "1.0"
macro-wasmer-universal-test = { version = "4.3.3", path = "./macro-wasmer-universal-test" }
macro-wasmer-universal-test = { version = "4.3.4", path = "./macro-wasmer-universal-test" }

# Dependencies and Develoment Dependencies for `js`.
[target.'cfg(target_arch = "wasm32")'.dependencies]
# - Mandatory dependencies for `js`.
wasmer-types = { path = "../types", version = "=4.3.3", default-features = false, features = ["std"] }
wasmer-types = { path = "../types", version = "=4.3.4", default-features = false, features = ["std"] }
wasm-bindgen = "0.2.74"
js-sys = "0.3.51"
wasmer-derive = { path = "../derive", version = "=4.3.3" }
wasmer-derive = { path = "../derive", version = "=4.3.4" }
# - Optional dependencies for `js`.
wasmparser = { workspace = true, default-features = false, optional = true }
hashbrown = { version = "0.11", optional = true }
Expand All @@ -82,7 +82,7 @@ serde = { version = "1.0", features = ["derive"] }
wat = "1.0"
anyhow = "1.0"
wasm-bindgen-test = "0.3.0"
macro-wasmer-universal-test = { version = "4.3.3", path = "./macro-wasmer-universal-test" }
macro-wasmer-universal-test = { version = "4.3.4", path = "./macro-wasmer-universal-test" }

# Specific to `js`.
#
Expand Down
Loading

0 comments on commit 9ef28e9

Please sign in to comment.