Skip to content

Commit

Permalink
Bump 3.0.0-alpha.3 to 3.0.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt authored and epilys committed Jul 30, 2022
1 parent 6453aac commit 011d368
Show file tree
Hide file tree
Showing 32 changed files with 145 additions and 145 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

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

## 3.0.0-alpha.3 2022/07/28
## 3.0.0-alpha.4 2022/07/28

### Added
- [#3035](https://github.com/wasmerio/wasmer/pull/3035) Added a simple "divide by zero" wast test, for #1899, as the trap information are correctly tracked on singlepass now
Expand Down
54 changes: 27 additions & 27 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-alpha.3"
version = "3.0.0-alpha.4"
description = "Wasmer workspace"
authors = ["Wasmer Engineering Team <[email protected]>"]
repository = "https://github.com/wasmerio/wasmer"
Expand All @@ -10,18 +10,18 @@ publish = false
autoexamples = false

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

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

[dev-dependencies]
wasmer = { version = "=3.0.0-alpha.3", path = "lib/api", default-features = false, features = ["cranelift"] }
wasmer = { version = "=3.0.0-alpha.4", path = "lib/api", default-features = false, features = ["cranelift"] }
anyhow = "1.0"
criterion = "0.3"
lazy_static = "1.4"
Expand Down
20 changes: 10 additions & 10 deletions lib/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer"
version = "3.0.0-alpha.3"
version = "3.0.0-alpha.4"
description = "High-performance WebAssembly runtime"
categories = ["wasm"]
keywords = ["wasm", "webassembly", "runtime", "vm"]
Expand Down Expand Up @@ -32,15 +32,15 @@ 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 = "=3.0.0-alpha.3" }
wasmer-compiler = { path = "../compiler", version = "=3.0.0-alpha.3" }
wasmer-derive = { path = "../derive", version = "=3.0.0-alpha.3" }
wasmer-types = { path = "../types", version = "=3.0.0-alpha.3" }
wasmer-vm = { path = "../vm", version = "=3.0.0-alpha.4" }
wasmer-compiler = { path = "../compiler", version = "=3.0.0-alpha.4" }
wasmer-derive = { path = "../derive", version = "=3.0.0-alpha.4" }
wasmer-types = { path = "../types", version = "=3.0.0-alpha.4" }
target-lexicon = { version = "0.12.2", default-features = false }
# - Optional dependencies for `sys`.
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.0.0-alpha.3", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=3.0.0-alpha.3", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=3.0.0-alpha.3", optional = true }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.0.0-alpha.4", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "=3.0.0-alpha.4", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "=3.0.0-alpha.4", optional = true }

wasm-bindgen = { version = "0.2.74", optional = true }
js-sys = { version = "0.3.51", optional = true }
Expand All @@ -57,11 +57,11 @@ anyhow = "1.0"
# Dependencies and Develoment Dependencies for `js`.
[target.'cfg(target_arch = "wasm32")'.dependencies]
# - Mandatory dependencies for `js`.
wasmer-types = { path = "../types", version = "=3.0.0-alpha.3", default-features = false, features = ["std"] }
wasmer-types = { path = "../types", version = "=3.0.0-alpha.4", default-features = false, features = ["std"] }
wasm-bindgen = "0.2.74"
js-sys = "0.3.51"
#web-sys = { version = "0.3.51", features = [ "console" ] }
wasmer-derive = { path = "../derive", version = "=3.0.0-alpha.3" }
wasmer-derive = { path = "../derive", version = "=3.0.0-alpha.4" }
# - Optional dependencies for `js`.
wasmparser = { version = "0.83", default-features = false, optional = true }
hashbrown = { version = "0.11", optional = true }
Expand Down
20 changes: 10 additions & 10 deletions lib/c-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-c-api"
version = "3.0.0-alpha.3"
version = "3.0.0-alpha.4"
description = "Wasmer C API library"
categories = ["wasm", "api-bindings"]
keywords = ["wasm", "webassembly", "runtime"]
Expand All @@ -22,15 +22,15 @@ 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 = "=3.0.0-alpha.3", path = "../api", default-features = false, features = ["sys"], package = "wasmer" }
wasmer-compiler-cranelift = { version = "=3.0.0-alpha.3", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=3.0.0-alpha.3", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=3.0.0-alpha.3", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=3.0.0-alpha.3", path = "../emscripten", optional = true }
wasmer-compiler = { version = "=3.0.0-alpha.3", path = "../compiler" }
wasmer-middlewares = { version = "=3.0.0-alpha.3", path = "../middlewares", optional = true }
wasmer-wasi = { version = "=3.0.0-alpha.3", path = "../wasi", default-features = false, features = ["host-fs", "sys"], optional = true }
wasmer-types = { version = "=3.0.0-alpha.3", path = "../types" }
wasmer-api = { version = "=3.0.0-alpha.4", path = "../api", default-features = false, features = ["sys"], package = "wasmer" }
wasmer-compiler-cranelift = { version = "=3.0.0-alpha.4", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "=3.0.0-alpha.4", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "=3.0.0-alpha.4", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "=3.0.0-alpha.4", path = "../emscripten", optional = true }
wasmer-compiler = { version = "=3.0.0-alpha.4", path = "../compiler" }
wasmer-middlewares = { version = "=3.0.0-alpha.4", path = "../middlewares", optional = true }
wasmer-wasi = { version = "=3.0.0-alpha.4", path = "../wasi", default-features = false, features = ["host-fs", "sys"], optional = true }
wasmer-types = { version = "=3.0.0-alpha.4", path = "../types" }
enumset = "1.0.2"
cfg-if = "1.0"
lazy_static = "1.4"
Expand Down
6 changes: 3 additions & 3 deletions lib/cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-cache"
version = "3.0.0-alpha.3"
version = "3.0.0-alpha.4"
description = "Cache system for Wasmer WebAssembly runtime"
categories = ["wasm", "caching"]
keywords = ["wasm", "webassembly", "cache"]
Expand All @@ -11,7 +11,7 @@ readme = "README.md"
edition = "2018"

[dependencies]
wasmer = { path = "../api", version = "=3.0.0-alpha.3", default-features = false, features = ["sys"] }
wasmer = { path = "../api", version = "=3.0.0-alpha.4", default-features = false, features = ["sys"] }
hex = "0.4"
thiserror = "1"
blake3 = "1.0"
Expand All @@ -20,7 +20,7 @@ blake3 = "1.0"
criterion = "0.3"
tempfile = "3"
rand = "0.8.3"
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.0.0-alpha.3" }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "=3.0.0-alpha.4" }

[features]
default = ["wasmer/js-serializable-module", "filesystem"]
Expand Down
Loading

0 comments on commit 011d368

Please sign in to comment.