-
Notifications
You must be signed in to change notification settings - Fork 817
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1942: Prepare for 1.0.0-beta2 release r=MarkMcCaskey a=MarkMcCaskey Let's get some of the super useful changes we've been making into the hands of our users! # 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
30 changed files
with
143 additions
and
158 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-beta1" | ||
version = "1.0.0-beta2" | ||
description = "Wasmer workspace" | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
|
@@ -10,21 +10,21 @@ publish = false | |
autoexamples = false | ||
|
||
[dependencies] | ||
wasmer = { version = "1.0.0-beta1", path = "lib/api", default-features = false } | ||
wasmer-compiler = { version = "1.0.0-beta1", path = "lib/compiler" } | ||
wasmer-compiler-cranelift = { version = "1.0.0-beta1", path = "lib/compiler-cranelift", optional = true } | ||
wasmer-compiler-singlepass = { version = "1.0.0-beta1", path = "lib/compiler-singlepass", optional = true } | ||
wasmer-compiler-llvm = { version = "1.0.0-beta1", path = "lib/compiler-llvm", optional = true } | ||
wasmer-emscripten = { version = "1.0.0-beta1", path = "lib/emscripten", optional = true } | ||
wasmer-engine = { version = "1.0.0-beta1", path = "lib/engine" } | ||
wasmer-engine-jit = { version = "1.0.0-beta1", path = "lib/engine-jit", optional = true } | ||
wasmer-engine-native = { version = "1.0.0-beta1", path = "lib/engine-native", optional = true } | ||
wasmer-engine-object-file = { version = "1.0.0-beta1", path = "lib/engine-object-file", optional = true } | ||
wasmer-wasi = { version = "1.0.0-beta1", path = "lib/wasi", optional = true } | ||
wasmer-wast = { version = "1.0.0-beta1", path = "tests/lib/wast", optional = true } | ||
wasmer-cache = { version = "1.0.0-beta1", path = "lib/cache", optional = true } | ||
wasmer-types = { version = "1.0.0-beta1", path = "lib/wasmer-types" } | ||
wasmer-middlewares = { version = "1.0.0-beta1", path = "lib/middlewares", optional = true } | ||
wasmer = { version = "1.0.0-beta2", path = "lib/api", default-features = false } | ||
wasmer-compiler = { version = "1.0.0-beta2", path = "lib/compiler" } | ||
wasmer-compiler-cranelift = { version = "1.0.0-beta2", path = "lib/compiler-cranelift", optional = true } | ||
wasmer-compiler-singlepass = { version = "1.0.0-beta2", path = "lib/compiler-singlepass", optional = true } | ||
wasmer-compiler-llvm = { version = "1.0.0-beta2", path = "lib/compiler-llvm", optional = true } | ||
wasmer-emscripten = { version = "1.0.0-beta2", path = "lib/emscripten", optional = true } | ||
wasmer-engine = { version = "1.0.0-beta2", path = "lib/engine" } | ||
wasmer-engine-jit = { version = "1.0.0-beta2", path = "lib/engine-jit", optional = true } | ||
wasmer-engine-native = { version = "1.0.0-beta2", path = "lib/engine-native", optional = true } | ||
wasmer-engine-object-file = { version = "1.0.0-beta2", path = "lib/engine-object-file", optional = true } | ||
wasmer-wasi = { version = "1.0.0-beta2", path = "lib/wasi", optional = true } | ||
wasmer-wast = { version = "1.0.0-beta2", path = "tests/lib/wast", optional = true } | ||
wasmer-cache = { version = "1.0.0-beta2", path = "lib/cache", optional = true } | ||
wasmer-types = { version = "1.0.0-beta2", path = "lib/wasmer-types" } | ||
wasmer-middlewares = { version = "1.0.0-beta2", path = "lib/middlewares", optional = true } | ||
cfg-if = "1.0" | ||
|
||
[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
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
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
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
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
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-derive" | ||
version = "1.0.0-beta1" | ||
version = "1.0.0-beta2" | ||
description = "Wasmer derive macros" | ||
authors = ["Wasmer Engineering Team <[email protected]>"] | ||
repository = "https://github.com/wasmerio/wasmer" | ||
|
@@ -17,5 +17,5 @@ proc-macro2 = "1" | |
proc-macro-error = "1.0.0" | ||
|
||
[dev-dependencies] | ||
wasmer = { path = "../api", version = "1.0.0-beta1" } | ||
wasmer = { path = "../api", version = "1.0.0-beta2" } | ||
compiletest_rs = "0.5" |
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
Oops, something went wrong.