Update usage of beta to rc

This commit is contained in:
Mark McCaskey
2020-12-23 11:33:53 -08:00
parent 2d1c03bea0
commit 1ac42e2e3b
10 changed files with 15 additions and 18 deletions

View File

@@ -1,12 +1,9 @@
# Migrating from Wasmer 0.x to Wasmer 1.0.0
Wasmer 1.0.0 is currently in beta and is our primary focus. This document will
Wasmer 1.0.0 is getting ready for a full release 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 beta of Wasmer 1.0.0. This document
will aim to make clear what these features are.
## Table of Contents
- [Rationale for changes in 1.0.0](#rationale-for-changes-in-100)
@@ -343,11 +340,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-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]: https://crates.io/crates/wasmer/1.0.0-rc1
[wasmer-wasi]: https://crates.io/crates/wasmer-wasi/1.0.0-rc1
[wasmer-emscripten]: https://crates.io/crates/wasmer-emscripten/1.0.0-rc1
[wasmer-engine]: https://crates.io/crates/wasmer-engine/1.0.0-rc1
[wasmer-compiler]: https://crates.io/crates/wasmer-compiler/1.0.0-rc1
[wasmer.io]: https://wasmer.io
[wasmer-nightly]: https://github.com/wasmerio/wasmer-nightly/
[getting-started]: https://docs.wasmer.io/ecosystem/wasmer/getting-started

View File

@@ -12,7 +12,7 @@ Add to your `Cargo.toml`
```toml
[dependencies]
wasmer = "1.0.0-beta"
wasmer = "1.0.0-rc"
```
```rust

View File

@@ -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-beta"
wasmer-compiler-cranelift = "1.0.0-rc"
```
And then:

View File

@@ -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-beta"
wasmer-compiler-llvm = "1.0.0-rc"
```
And then:

View File

@@ -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-beta"
wasmer-compiler-singlepass = "1.0.0-rc"
```
And then:

View File

@@ -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-beta`) includes many improvements
The new version of Wasmer (`1.0.0-rc`) 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.

View File

@@ -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-beta`) includes many improvements
The new version of Wasmer (`1.0.0-rc`) 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.

View File

@@ -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-beta`) includes many improvements
The new version of Wasmer (`1.0.0-rc`) 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.

View File

@@ -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-beta1) WebAssembly VM.
This is an [engine](https://crates.io/crates/wasmer-engine) for the [wasmer](https://crates.io/crates/wasmer/1.0.0-rc1) 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

View File

@@ -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-beta"
wasmer-wasi = "1.0.0-rc"
```
And then: