Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
1609: Prepare for 1.0.0-alpha02.0 release r=MarkMcCaskey a=MarkMcCaskey

Preparing the 1.0.0-alpha02.0 release; trying out all our new release infra!

# Review

- [x] Add a short description of the the change to the CHANGELOG.md file


Co-authored-by: Mark McCaskey <[email protected]>
  • Loading branch information
bors[bot] and Mark McCaskey authored Sep 11, 2020
2 parents d46daa1 + 1ee2ba3 commit cad7d86
Show file tree
Hide file tree
Showing 25 changed files with 149 additions and 141 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Changelog

## **[Unreleased]**

## 1.0.0-alpha02.0 - 2020-09-11
- [#1602](https://github.com/wasmerio/wasmer/pull/1602) Fix panic when calling host functions with negative numbers in certain situations
- [#1590](https://github.com/wasmerio/wasmer/pull/1590) Fix soundness issue in API of vm::Global
- [#1566](https://github.com/wasmerio/wasmer/pull/1566) Add support for opening special Unix files to the WASI FS

## TODO: 1.0.0-alpha1.0
## TODO: 1.0.0-alpha01.0
- Wasmer refactor lands

## TODO: 17...
Expand Down
54 changes: 30 additions & 24 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
@@ -1,6 +1,6 @@
[package]
name = "wasmer-workspace"
version = "1.0.0-alpha01.0"
version = "1.0.0-alpha02.0"
authors = ["Wasmer Engineering Team <[email protected]>"]
repository = "https://github.com/wasmerio/wasmer"
description = "Wasmer workspace"
Expand All @@ -10,18 +10,18 @@ publish = false
autoexamples = false

[dependencies]
wasmer = { version = "1.0.0-alpha01.0", path = "lib/api", default-features = false }
wasmer-compiler = { version = "1.0.0-alpha01.0", path = "lib/compiler" }
wasmer-compiler-cranelift = { version = "1.0.0-alpha01.0", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "1.0.0-alpha01.0", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "1.0.0-alpha01.0", path = "lib/compiler-llvm", optional = true }
wasmer-engine = { version = "1.0.0-alpha01.0", path = "lib/engine" }
wasmer-engine-jit = { version = "1.0.0-alpha01.0", path = "lib/engine-jit", optional = true }
wasmer-engine-native = { version = "1.0.0-alpha01.0", path = "lib/engine-native", optional = true }
wasmer-wasi = { version = "1.0.0-alpha01.0", path = "lib/wasi", optional = true }
wasmer-wast = { version = "1.0.0-alpha01.0", path = "tests/lib/wast", optional = true }
wasmer-cache = { version = "1.0.0-alpha01.0", path = "lib/cache", optional = true }
wasmer-types = { version = "1.0.0-alpha01.0", path = "lib/wasmer-types" }
wasmer = { version = "1.0.0-alpha02.0", path = "lib/api", default-features = false }
wasmer-compiler = { version = "1.0.0-alpha02.0", path = "lib/compiler" }
wasmer-compiler-cranelift = { version = "1.0.0-alpha02.0", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "1.0.0-alpha02.0", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "1.0.0-alpha02.0", path = "lib/compiler-llvm", optional = true }
wasmer-engine = { version = "1.0.0-alpha02.0", path = "lib/engine" }
wasmer-engine-jit = { version = "1.0.0-alpha02.0", path = "lib/engine-jit", optional = true }
wasmer-engine-native = { version = "1.0.0-alpha02.0", path = "lib/engine-native", optional = true }
wasmer-wasi = { version = "1.0.0-alpha02.0", path = "lib/wasi", optional = true }
wasmer-wast = { version = "1.0.0-alpha02.0", path = "tests/lib/wast", optional = true }
wasmer-cache = { version = "1.0.0-alpha02.0", path = "lib/cache", optional = true }
wasmer-types = { version = "1.0.0-alpha02.0", path = "lib/wasmer-types" }
cfg-if = "0.1"

[workspace]
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 = "1.0.0-alpha01.0"
version = "1.0.0-alpha02.0"
authors = ["Wasmer Engineering Team <[email protected]>"]
description = "Wasmer runtime API"
license = "MIT OR Apache-2.0 WITH LLVM-exception"
Expand All @@ -9,15 +9,15 @@ readme = "README.md"
edition = "2018"

[dependencies]
wasmer-vm = { path = "../vm", version = "1.0.0-alpha01.0" }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "1.0.0-alpha01.0", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "1.0.0-alpha01.0", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "1.0.0-alpha01.0", optional = true }
wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha01.0" }
wasmer-engine = { path = "../engine", version = "1.0.0-alpha01.0" }
wasmer-engine-jit = { path = "../engine-jit", version = "1.0.0-alpha01.0", optional = true }
wasmer-engine-native = { path = "../engine-native", version = "1.0.0-alpha01.0", optional = true }
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha01.0" }
wasmer-vm = { path = "../vm", version = "1.0.0-alpha02.0" }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "1.0.0-alpha02.0", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "1.0.0-alpha02.0", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "1.0.0-alpha02.0", optional = true }
wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha02.0" }
wasmer-engine = { path = "../engine", version = "1.0.0-alpha02.0" }
wasmer-engine-jit = { path = "../engine-jit", version = "1.0.0-alpha02.0", optional = true }
wasmer-engine-native = { path = "../engine-native", version = "1.0.0-alpha02.0", optional = true }
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha02.0" }
indexmap = { version = "1.4", features = ["serde-1"] }
cfg-if = "0.1"
wat = { version = "1.0", optional = true }
Expand Down
26 changes: 13 additions & 13 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 = "1.0.0-alpha01.0"
version = "1.0.0-alpha02.0"
description = "Wasmer C API library"
documentation = "https://wasmerio.github.io/wasmer/c-api/"
license = "MIT"
Expand All @@ -15,17 +15,17 @@ edition = "2018"
crate-type = ["cdylib", "staticlib"]

[dependencies]
wasmer = { version = "1.0.0-alpha01.0", path = "../api", default-features = false }
wasmer-compiler = { version = "1.0.0-alpha01.0", path = "../compiler" }
wasmer-compiler-cranelift = { version = "1.0.0-alpha01.0", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "1.0.0-alpha01.0", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "1.0.0-alpha01.0", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "1.0.0-alpha01.0", path = "../emscripten", optional = true }
wasmer-engine = { version = "1.0.0-alpha01.0", path = "../engine" }
wasmer-engine-jit = { version = "1.0.0-alpha01.0", path = "../engine-jit", optional = true }
wasmer-engine-native = { version = "1.0.0-alpha01.0", path = "../engine-native", optional = true }
wasmer-wasi = { version = "1.0.0-alpha01.0", path = "../wasi", optional = true }
wasmer-types = { version = "1.0.0-alpha01.0", path = "../wasmer-types" }
wasmer = { version = "1.0.0-alpha02.0", path = "../api", default-features = false }
wasmer-compiler = { version = "1.0.0-alpha02.0", path = "../compiler" }
wasmer-compiler-cranelift = { version = "1.0.0-alpha02.0", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "1.0.0-alpha02.0", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "1.0.0-alpha02.0", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "1.0.0-alpha02.0", path = "../emscripten", optional = true }
wasmer-engine = { version = "1.0.0-alpha02.0", path = "../engine" }
wasmer-engine-jit = { version = "1.0.0-alpha02.0", path = "../engine-jit", optional = true }
wasmer-engine-native = { version = "1.0.0-alpha02.0", path = "../engine-native", optional = true }
wasmer-wasi = { version = "1.0.0-alpha02.0", path = "../wasi", optional = true }
wasmer-types = { version = "1.0.0-alpha02.0", path = "../wasmer-types" }
cfg-if = "0.1"
lazy_static = "1"
libc = { version = "^0.2.69", default-features = false }
Expand All @@ -36,7 +36,7 @@ typetag = { version = "0.1", optional = true }
paste = "0.1"
# for generating code in the same way thot the wasm-c-api does
# Commented out for now until we can find a solution to the exported function problem
# wasmer-wasm-c-api = { version = "1.0.0-alpha01.0", path = "crates/wasm-c-api" }
# wasmer-wasm-c-api = { version = "1.0.0-alpha02.0", path = "crates/wasm-c-api" }

[features]
default = [
Expand Down
4 changes: 2 additions & 2 deletions lib/cache/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-cache"
version = "1.0.0-alpha01.0"
version = "1.0.0-alpha02.0"
description = "Cache system for WebAssembly"
license = "MIT"
authors = ["Wasmer Engineering Team <[email protected]>"]
Expand All @@ -11,7 +11,7 @@ readme = "README.md"
edition = "2018"

[dependencies]
wasmer = { path = "../api", version = "1.0.0-alpha01.0", default-features = false }
wasmer = { path = "../api", version = "1.0.0-alpha02.0", default-features = false }
memmap = "0.7"
hex = "0.4"
thiserror = "1"
Expand Down
Loading

0 comments on commit cad7d86

Please sign in to comment.