mirror of
https://github.com/mii443/wasmer.git
synced 2025-09-04 00:19:24 +00:00
Update mentions of alpha to beta
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
# Migrating from Wasmer 0.x to Wasmer 1.0.0
|
||||
|
||||
Wasmer 1.0.0 is currently in alpha and is our primary focus. This document will
|
||||
Wasmer 1.0.0 is currently in beta and is our primary focus. This document will
|
||||
describe the differences between Wasmer 0.x and Wasmer 1.0.0 and provide examples
|
||||
to make migrating to the new API as simple as possible.
|
||||
|
||||
Some features are still under development during the alpha of Wasmer 1.0.0. This document
|
||||
Some features are still under development during the beta of Wasmer 1.0.0. This document
|
||||
will aim to make clear what these features are.
|
||||
|
||||
## Table of Contents
|
||||
@ -328,11 +328,11 @@ you'll be able to delegate most of the work to Wasmer:
|
||||
```
|
||||
|
||||
[examples]: https://docs.wasmer.io/integrations/examples
|
||||
[wasmer]: https://crates.io/crates/wasmer/1.0.0-alpha3
|
||||
[wasmer-wasi]: https://crates.io/crates/wasmer-wasi/1.0.0-alpha3
|
||||
[wasmer-emscripten]: https://crates.io/crates/wasmer-emscripten/1.0.0-alpha3
|
||||
[wasmer-engine]: https://crates.io/crates/wasmer-engine/1.0.0-alpha3
|
||||
[wasmer-compiler]: https://crates.io/crates/wasmer-compiler/1.0.0-alpha3
|
||||
[wasmer]: https://crates.io/crates/wasmer/1.0.0-beta1
|
||||
[wasmer-wasi]: https://crates.io/crates/wasmer-wasi/1.0.0-beta1
|
||||
[wasmer-emscripten]: https://crates.io/crates/wasmer-emscripten/1.0.0-beta1
|
||||
[wasmer-engine]: https://crates.io/crates/wasmer-engine/1.0.0-beta1
|
||||
[wasmer-compiler]: https://crates.io/crates/wasmer-compiler/1.0.0-beta1
|
||||
[wasmer.io]: https://wasmer.io
|
||||
[wasmer-nightly]: https://github.com/wasmerio/wasmer-nightly/
|
||||
[getting-started]: https://docs.wasmer.io/ecosystem/wasmer/getting-started
|
||||
|
@ -12,7 +12,7 @@ Add to your `Cargo.toml`
|
||||
|
||||
```toml
|
||||
[dependencies]
|
||||
wasmer = "1.0.0-alpha"
|
||||
wasmer = "1.0.0-beta"
|
||||
```
|
||||
|
||||
```rust
|
||||
|
@ -7,7 +7,7 @@ This crate contains a compiler implementation based on Cranelift.
|
||||
First, add this crate into your `Cargo.toml` dependencies:
|
||||
|
||||
```toml
|
||||
wasmer-compiler-cranelift = "1.0.0-alpha"
|
||||
wasmer-compiler-cranelift = "1.0.0-beta"
|
||||
```
|
||||
|
||||
And then:
|
||||
|
@ -7,7 +7,7 @@ This crate contains a compiler implementation based on [the LLVM Compiler Infras
|
||||
First, add this crate into your `Cargo.toml` dependencies:
|
||||
|
||||
```toml
|
||||
wasmer-compiler-llvm = "1.0.0-alpha"
|
||||
wasmer-compiler-llvm = "1.0.0-beta"
|
||||
```
|
||||
|
||||
And then:
|
||||
|
@ -7,7 +7,7 @@ This crate contains a compiler implementation based on the Singlepass linear com
|
||||
Add this crate into your `Cargo.toml` dependencies:
|
||||
|
||||
```toml
|
||||
wasmer-compiler-singlepass = "1.0.0-alpha"
|
||||
wasmer-compiler-singlepass = "1.0.0-beta"
|
||||
```
|
||||
|
||||
And then:
|
||||
|
@ -6,7 +6,7 @@ Thanks to users feedback, collected experience and various use cases,
|
||||
Wasmer has decided to entirely improve its API to offer the best user
|
||||
experience and the best features to as many users as possible.
|
||||
|
||||
The new version of Wasmer (`1.0.0-alpha`) includes many improvements
|
||||
The new version of Wasmer (`1.0.0-beta`) includes many improvements
|
||||
in terms of performance or the memory consumption, in addition to a ton
|
||||
of new features and much better flexibility!
|
||||
You can check revamped new API in the [`wasmer`] crate.
|
||||
|
@ -6,7 +6,7 @@ Thanks to users feedback, collected experience and various use cases,
|
||||
Wasmer has decided to entirely improve its API to offer the best user
|
||||
experience and the best features to as many users as possible.
|
||||
|
||||
The new version of Wasmer (`1.0.0-alpha`) includes many improvements
|
||||
The new version of Wasmer (`1.0.0-beta`) includes many improvements
|
||||
in terms of performance or the memory consumption, in addition to a ton
|
||||
of new features and much better flexibility!
|
||||
You can check revamped new API in the [`wasmer`] crate.
|
||||
|
@ -6,7 +6,7 @@ Thanks to users feedback, collected experience and various use cases,
|
||||
Wasmer has decided to entirely improve its API to offer the best user
|
||||
experience and the best features to as many users as possible.
|
||||
|
||||
The new version of Wasmer (`1.0.0-alpha`) includes many improvements
|
||||
The new version of Wasmer (`1.0.0-beta`) includes many improvements
|
||||
in terms of performance or the memory consumption, in addition to a ton
|
||||
of new features and much better flexibility!
|
||||
You can check revamped new API in the [`wasmer`] crate.
|
||||
|
@ -17,5 +17,5 @@ proc-macro2 = "1"
|
||||
proc-macro-error = "1.0.0"
|
||||
|
||||
[dev-dependencies]
|
||||
wasmer = { path = "../api", version = "1.0.0-alpha4" }
|
||||
wasmer = { path = "../api", version = "1.0.0-beta1" }
|
||||
compiletest_rs = "0.5"
|
||||
|
@ -13,7 +13,7 @@ edition = "2018"
|
||||
[dependencies]
|
||||
wasmer-types = { path = "../wasmer-types", version = "1.0.0-beta1" }
|
||||
wasmer-compiler = { path = "../compiler", version = "1.0.0-beta1" }
|
||||
wasmer-vm = { path = "../vm", version = "1.0.0-alpha01.0" }
|
||||
wasmer-vm = { path = "../vm", version = "1.0.0-beta1" }
|
||||
wasmer-engine = { path = "../engine", version = "1.0.0-beta1" }
|
||||
wasmer-object = { path = "../object", version = "1.0.0-beta1" }
|
||||
serde = { version = "1.0", features = ["derive", "rc"] }
|
||||
|
@ -1,6 +1,6 @@
|
||||
# Wasmer Engine Object File
|
||||
|
||||
This is an [engine](https://crates.io/crates/wasmer-engine) for the [wasmer](https://crates.io/crates/wasmer/1.0.0-alpha3) WebAssembly VM.
|
||||
This is an [engine](https://crates.io/crates/wasmer-engine) for the [wasmer](https://crates.io/crates/wasmer/1.0.0-beta1) WebAssembly VM.
|
||||
|
||||
This engine is used to produce a native object file that can be linked
|
||||
against providing a sandboxed WebAssembly runtime environment for the
|
||||
|
@ -7,7 +7,7 @@ This crate provides the necessary imports to use WASI easily from Wasmer.
|
||||
First, add this crate into your `Cargo.toml` dependencies:
|
||||
|
||||
```toml
|
||||
wasmer-wasi = "1.0.0-alpha"
|
||||
wasmer-wasi = "1.0.0-beta"
|
||||
```
|
||||
|
||||
And then:
|
||||
|
Reference in New Issue
Block a user