diff --git a/docs/migration_to_1.0.0.md b/docs/migration_to_1.0.0.md index bcb437a5b..84a0ea09f 100644 --- a/docs/migration_to_1.0.0.md +++ b/docs/migration_to_1.0.0.md @@ -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 diff --git a/lib/api/README.md b/lib/api/README.md index f6a56cbe4..3a3a28b3b 100644 --- a/lib/api/README.md +++ b/lib/api/README.md @@ -12,7 +12,7 @@ Add to your `Cargo.toml` ```toml [dependencies] -wasmer = "1.0.0-beta" +wasmer = "1.0.0-rc" ``` ```rust diff --git a/lib/compiler-cranelift/README.md b/lib/compiler-cranelift/README.md index 775e14402..b916dda7e 100644 --- a/lib/compiler-cranelift/README.md +++ b/lib/compiler-cranelift/README.md @@ -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: diff --git a/lib/compiler-llvm/README.md b/lib/compiler-llvm/README.md index 13188823d..362022acf 100644 --- a/lib/compiler-llvm/README.md +++ b/lib/compiler-llvm/README.md @@ -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: diff --git a/lib/compiler-singlepass/README.md b/lib/compiler-singlepass/README.md index 7ef16bdb0..629462801 100644 --- a/lib/compiler-singlepass/README.md +++ b/lib/compiler-singlepass/README.md @@ -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: diff --git a/lib/deprecated/README.md b/lib/deprecated/README.md index f39d97322..7bb50d041 100644 --- a/lib/deprecated/README.md +++ b/lib/deprecated/README.md @@ -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. diff --git a/lib/deprecated/runtime-core/README.md b/lib/deprecated/runtime-core/README.md index 031a4852b..f92a19fa8 100644 --- a/lib/deprecated/runtime-core/README.md +++ b/lib/deprecated/runtime-core/README.md @@ -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. diff --git a/lib/deprecated/runtime/README.md b/lib/deprecated/runtime/README.md index 1aef3aec9..7096ad700 100644 --- a/lib/deprecated/runtime/README.md +++ b/lib/deprecated/runtime/README.md @@ -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. diff --git a/lib/engine-object-file/README.md b/lib/engine-object-file/README.md index 9f2121310..82ca42300 100644 --- a/lib/engine-object-file/README.md +++ b/lib/engine-object-file/README.md @@ -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 diff --git a/lib/wasi/README.md b/lib/wasi/README.md index f499cc1e3..71984c79f 100644 --- a/lib/wasi/README.md +++ b/lib/wasi/README.md @@ -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: