forked from wasmerio/wasmer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
25 changed files
with
149 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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 } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]>"] | ||
|
@@ -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" | ||
|
Oops, something went wrong.