diff --git a/CHANGELOG.md b/CHANGELOG.md index b07db20936b..b5d2062817e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ ## **[Unreleased]** +## 1.0.0 - 2021-01-05 + ### Added - [#1969](https://github.com/wasmerio/wasmer/pull/1969) Added D integration to the README diff --git a/Cargo.lock b/Cargo.lock index 05c9cd59369..32ecd8f4447 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2397,7 +2397,7 @@ checksum = "7e7811dd7f9398f14cc76efd356f98f03aa30419dea46aa810d71e819fc97158" [[package]] name = "wasmer" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "anyhow", "cfg-if 0.1.10", @@ -2423,7 +2423,7 @@ dependencies = [ [[package]] name = "wasmer-c-api" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "cbindgen", "cfg-if 1.0.0", @@ -2451,7 +2451,7 @@ dependencies = [ [[package]] name = "wasmer-cache" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "blake3", "hex", @@ -2461,7 +2461,7 @@ dependencies = [ [[package]] name = "wasmer-cli" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "anyhow", "atty", @@ -2493,7 +2493,7 @@ dependencies = [ [[package]] name = "wasmer-compiler" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "enumset", "hashbrown 0.9.1", @@ -2510,7 +2510,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-cranelift" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "cranelift-codegen 0.67.0", "cranelift-codegen 0.68.0", @@ -2531,7 +2531,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-llvm" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "byteorder", "cc", @@ -2553,7 +2553,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-singlepass" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "byteorder", "dynasm", @@ -2572,7 +2572,7 @@ dependencies = [ [[package]] name = "wasmer-derive" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "compiletest_rs", "proc-macro-error", @@ -2584,7 +2584,7 @@ dependencies = [ [[package]] name = "wasmer-emscripten" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "byteorder", "getrandom 0.2.0", @@ -2597,7 +2597,7 @@ dependencies = [ [[package]] name = "wasmer-engine" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "backtrace", "bincode", @@ -2616,7 +2616,7 @@ dependencies = [ [[package]] name = "wasmer-engine-dummy" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "bincode", "serde", @@ -2629,7 +2629,7 @@ dependencies = [ [[package]] name = "wasmer-engine-jit" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "bincode", "cfg-if 0.1.10", @@ -2645,7 +2645,7 @@ dependencies = [ [[package]] name = "wasmer-engine-native" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "bincode", "cfg-if 0.1.10", @@ -2664,7 +2664,7 @@ dependencies = [ [[package]] name = "wasmer-engine-object-file" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "bincode", "cfg-if 0.1.10", @@ -2682,7 +2682,7 @@ dependencies = [ [[package]] name = "wasmer-integration-tests-cli" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "anyhow", "tempfile", @@ -2690,7 +2690,7 @@ dependencies = [ [[package]] name = "wasmer-middlewares" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "wasmer", "wasmer-types", @@ -2699,7 +2699,7 @@ dependencies = [ [[package]] name = "wasmer-object" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "object", "thiserror", @@ -2709,7 +2709,7 @@ dependencies = [ [[package]] name = "wasmer-types" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "cranelift-entity 0.68.0", "serde", @@ -2718,7 +2718,7 @@ dependencies = [ [[package]] name = "wasmer-vm" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "backtrace", "cc", @@ -2736,7 +2736,7 @@ dependencies = [ [[package]] name = "wasmer-wasi" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "bincode", "byteorder", @@ -2754,7 +2754,7 @@ dependencies = [ [[package]] name = "wasmer-wasi-experimental-io-devices" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "minifb", "ref_thread_local", @@ -2766,7 +2766,7 @@ dependencies = [ [[package]] name = "wasmer-wast" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "anyhow", "serde", @@ -2780,7 +2780,7 @@ dependencies = [ [[package]] name = "wasmer-workspace" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "anyhow", "blake3", diff --git a/Cargo.toml b/Cargo.toml index 5ea7b9c30f8..976a7092745 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-workspace" -version = "1.0.0-rc1" +version = "1.0.0" description = "Wasmer workspace" authors = ["Wasmer Engineering Team "] repository = "https://github.com/wasmerio/wasmer" @@ -10,21 +10,21 @@ publish = false autoexamples = false [dependencies] -wasmer = { version = "1.0.0-rc1", path = "lib/api", default-features = false } -wasmer-compiler = { version = "1.0.0-rc1", path = "lib/compiler" } -wasmer-compiler-cranelift = { version = "1.0.0-rc1", path = "lib/compiler-cranelift", optional = true } -wasmer-compiler-singlepass = { version = "1.0.0-rc1", path = "lib/compiler-singlepass", optional = true } -wasmer-compiler-llvm = { version = "1.0.0-rc1", path = "lib/compiler-llvm", optional = true } -wasmer-emscripten = { version = "1.0.0-rc1", path = "lib/emscripten", optional = true } -wasmer-engine = { version = "1.0.0-rc1", path = "lib/engine" } -wasmer-engine-jit = { version = "1.0.0-rc1", path = "lib/engine-jit", optional = true } -wasmer-engine-native = { version = "1.0.0-rc1", path = "lib/engine-native", optional = true } -wasmer-engine-object-file = { version = "1.0.0-rc1", path = "lib/engine-object-file", optional = true } -wasmer-wasi = { version = "1.0.0-rc1", path = "lib/wasi", optional = true } -wasmer-wast = { version = "1.0.0-rc1", path = "tests/lib/wast", optional = true } -wasmer-cache = { version = "1.0.0-rc1", path = "lib/cache", optional = true } -wasmer-types = { version = "1.0.0-rc1", path = "lib/wasmer-types" } -wasmer-middlewares = { version = "1.0.0-rc1", path = "lib/middlewares", optional = true } +wasmer = { version = "1.0.0", path = "lib/api", default-features = false } +wasmer-compiler = { version = "1.0.0", path = "lib/compiler" } +wasmer-compiler-cranelift = { version = "1.0.0", path = "lib/compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "1.0.0", path = "lib/compiler-singlepass", optional = true } +wasmer-compiler-llvm = { version = "1.0.0", path = "lib/compiler-llvm", optional = true } +wasmer-emscripten = { version = "1.0.0", path = "lib/emscripten", optional = true } +wasmer-engine = { version = "1.0.0", path = "lib/engine" } +wasmer-engine-jit = { version = "1.0.0", path = "lib/engine-jit", optional = true } +wasmer-engine-native = { version = "1.0.0", path = "lib/engine-native", optional = true } +wasmer-engine-object-file = { version = "1.0.0", path = "lib/engine-object-file", optional = true } +wasmer-wasi = { version = "1.0.0", path = "lib/wasi", optional = true } +wasmer-wast = { version = "1.0.0", path = "tests/lib/wast", optional = true } +wasmer-cache = { version = "1.0.0", path = "lib/cache", optional = true } +wasmer-types = { version = "1.0.0", path = "lib/wasmer-types" } +wasmer-middlewares = { version = "1.0.0", path = "lib/middlewares", optional = true } cfg-if = "1.0" [workspace] diff --git a/docs/migration_to_1.0.0.md b/docs/migration_to_1.0.0.md index 1300d2d1888..c5f7bd11d78 100644 --- a/docs/migration_to_1.0.0.md +++ b/docs/migration_to_1.0.0.md @@ -340,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-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]: https://crates.io/crates/wasmer/1.0.0 +[wasmer-wasi]: https://crates.io/crates/wasmer-wasi/1.0.0 +[wasmer-emscripten]: https://crates.io/crates/wasmer-emscripten/1.0.0 +[wasmer-engine]: https://crates.io/crates/wasmer-engine/1.0.0 +[wasmer-compiler]: https://crates.io/crates/wasmer-compiler/1.0.0 [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/Cargo.toml b/lib/api/Cargo.toml index 41e1d512b40..8ce5d261885 100644 --- a/lib/api/Cargo.toml +++ b/lib/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer" -version = "1.0.0-rc1" +version = "1.0.0" description = "High-performant WebAssembly runtime" categories = ["wasm"] keywords = ["wasm", "webassembly", "runtime", "vm"] @@ -11,16 +11,16 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-vm = { path = "../vm", version = "1.0.0-rc1" } -wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "1.0.0-rc1", optional = true } -wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "1.0.0-rc1", optional = true } -wasmer-compiler-llvm = { path = "../compiler-llvm", version = "1.0.0-rc1", optional = true } -wasmer-compiler = { path = "../compiler", version = "1.0.0-rc1" } -wasmer-derive = { path = "../derive", version = "1.0.0-rc1" } -wasmer-engine = { path = "../engine", version = "1.0.0-rc1" } -wasmer-engine-jit = { path = "../engine-jit", version = "1.0.0-rc1", optional = true } -wasmer-engine-native = { path = "../engine-native", version = "1.0.0-rc1", optional = true } -wasmer-types = { path = "../wasmer-types", version = "1.0.0-rc1" } +wasmer-vm = { path = "../vm", version = "1.0.0" } +wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "1.0.0", optional = true } +wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "1.0.0", optional = true } +wasmer-compiler-llvm = { path = "../compiler-llvm", version = "1.0.0", optional = true } +wasmer-compiler = { path = "../compiler", version = "1.0.0" } +wasmer-derive = { path = "../derive", version = "1.0.0" } +wasmer-engine = { path = "../engine", version = "1.0.0" } +wasmer-engine-jit = { path = "../engine-jit", version = "1.0.0", optional = true } +wasmer-engine-native = { path = "../engine-native", version = "1.0.0", optional = true } +wasmer-types = { path = "../wasmer-types", version = "1.0.0" } indexmap = { version = "1.4", features = ["serde-1"] } cfg-if = "0.1" wat = { version = "1.0", optional = true } diff --git a/lib/c-api/Cargo.toml b/lib/c-api/Cargo.toml index 492d77c03ca..37747f7596d 100644 --- a/lib/c-api/Cargo.toml +++ b/lib/c-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-c-api" -version = "1.0.0-rc1" +version = "1.0.0" description = "Wasmer C API library" categories = ["wasm", "api-bindings"] keywords = ["wasm", "webassembly", "runtime"] @@ -15,18 +15,18 @@ edition = "2018" crate-type = ["cdylib", "rlib", "staticlib"] [dependencies] -wasmer = { version = "1.0.0-rc1", path = "../api", default-features = false } -wasmer-compiler = { version = "1.0.0-rc1", path = "../compiler" } -wasmer-compiler-cranelift = { version = "1.0.0-rc1", path = "../compiler-cranelift", optional = true } -wasmer-compiler-singlepass = { version = "1.0.0-rc1", path = "../compiler-singlepass", optional = true } -wasmer-compiler-llvm = { version = "1.0.0-rc1", path = "../compiler-llvm", optional = true } -wasmer-emscripten = { version = "1.0.0-rc1", path = "../emscripten", optional = true } -wasmer-engine = { version = "1.0.0-rc1", path = "../engine" } -wasmer-engine-jit = { version = "1.0.0-rc1", path = "../engine-jit", optional = true } -wasmer-engine-native = { version = "1.0.0-rc1", path = "../engine-native", optional = true } -wasmer-engine-object-file = { version = "1.0.0-rc1", path = "../engine-object-file", optional = true } -wasmer-wasi = { version = "1.0.0-rc1", path = "../wasi", optional = true } -wasmer-types = { version = "1.0.0-rc1", path = "../wasmer-types" } +wasmer = { version = "1.0.0", path = "../api", default-features = false } +wasmer-compiler = { version = "1.0.0", path = "../compiler" } +wasmer-compiler-cranelift = { version = "1.0.0", path = "../compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "1.0.0", path = "../compiler-singlepass", optional = true } +wasmer-compiler-llvm = { version = "1.0.0", path = "../compiler-llvm", optional = true } +wasmer-emscripten = { version = "1.0.0", path = "../emscripten", optional = true } +wasmer-engine = { version = "1.0.0", path = "../engine" } +wasmer-engine-jit = { version = "1.0.0", path = "../engine-jit", optional = true } +wasmer-engine-native = { version = "1.0.0", path = "../engine-native", optional = true } +wasmer-engine-object-file = { version = "1.0.0", path = "../engine-object-file", optional = true } +wasmer-wasi = { version = "1.0.0", path = "../wasi", optional = true } +wasmer-types = { version = "1.0.0", path = "../wasmer-types" } cfg-if = "1.0" lazy_static = "1.4" libc = { version = "^0.2", default-features = false } @@ -37,7 +37,7 @@ typetag = { version = "0.1", optional = true } paste = "1.0" # for generating code in the same way thot the wasm-c-api does # Commented out for now until we can find a solution to the exported function problem -# wasmer-wasm-c-api = { version = "1.0.0-rc1", path = "crates/wasm-c-api" } +# wasmer-wasm-c-api = { version = "1.0.0", path = "crates/wasm-c-api" } [dev-dependencies] inline-c = "0.1.4" diff --git a/lib/c-api/wasmer.h b/lib/c-api/wasmer.h index 40081a4f6dc..731aa9378b1 100644 --- a/lib/c-api/wasmer.h +++ b/lib/c-api/wasmer.h @@ -32,11 +32,11 @@ #define WASMER_WASI_ENABLED // This file corresponds to the following Wasmer version. -#define WASMER_VERSION "1.0.0-rc1" +#define WASMER_VERSION "1.0.0" #define WASMER_VERSION_MAJOR 1 #define WASMER_VERSION_MINOR 0 #define WASMER_VERSION_PATCH 0 -#define WASMER_VERSION_PRE "rc1" +#define WASMER_VERSION_PRE "" #endif // WASMER_H_PRELUDE diff --git a/lib/c-api/wasmer.hh b/lib/c-api/wasmer.hh index 1dc0dada74c..a4c34e50f13 100644 --- a/lib/c-api/wasmer.hh +++ b/lib/c-api/wasmer.hh @@ -32,11 +32,11 @@ #define WASMER_WASI_ENABLED // This file corresponds to the following Wasmer version. -#define WASMER_VERSION "1.0.0-rc1" +#define WASMER_VERSION "1.0.0" #define WASMER_VERSION_MAJOR 1 #define WASMER_VERSION_MINOR 0 #define WASMER_VERSION_PATCH 0 -#define WASMER_VERSION_PRE "rc1" +#define WASMER_VERSION_PRE "" #endif // WASMER_H_PRELUDE diff --git a/lib/c-api/wasmer_wasm.h b/lib/c-api/wasmer_wasm.h index e0dbe7b0006..23661e633bb 100644 --- a/lib/c-api/wasmer_wasm.h +++ b/lib/c-api/wasmer_wasm.h @@ -39,11 +39,11 @@ #define WASMER_WASI_ENABLED // This file corresponds to the following Wasmer version. -#define WASMER_VERSION "1.0.0-rc1" +#define WASMER_VERSION "1.0.0" #define WASMER_VERSION_MAJOR 1 #define WASMER_VERSION_MINOR 0 #define WASMER_VERSION_PATCH 0 -#define WASMER_VERSION_PRE "rc1" +#define WASMER_VERSION_PRE "" #endif // WASMER_WASM_H_PRELUDE diff --git a/lib/cache/Cargo.toml b/lib/cache/Cargo.toml index 006d1ed892f..bc368fc1622 100644 --- a/lib/cache/Cargo.toml +++ b/lib/cache/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-cache" -version = "1.0.0-rc1" +version = "1.0.0" description = "Cache system for Wasmer WebAssembly runtime" categories = ["wasm", "caching"] keywords = ["wasm", "webassembly", "cache"] @@ -11,7 +11,7 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer = { path = "../api", version = "1.0.0-rc1", default-features = false } +wasmer = { path = "../api", version = "1.0.0", default-features = false } hex = "0.4" thiserror = "1" blake3 = "0.3" diff --git a/lib/cli/Cargo.toml b/lib/cli/Cargo.toml index c57bac27710..a56e6e24414 100644 --- a/lib/cli/Cargo.toml +++ b/lib/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-cli" -version = "1.0.0-rc1" +version = "1.0.0" description = "Wasmer CLI" categories = ["wasm", "command-line-interface"] keywords = ["wasm", "webassembly", "cli"] @@ -17,22 +17,22 @@ path = "src/bin/wasmer.rs" doc = false [dependencies] -wasmer = { version = "1.0.0-rc1", path = "../api", default-features = false } -wasmer-compiler = { version = "1.0.0-rc1", path = "../compiler" } -wasmer-compiler-cranelift = { version = "1.0.0-rc1", path = "../compiler-cranelift", optional = true } -wasmer-compiler-singlepass = { version = "1.0.0-rc1", path = "../compiler-singlepass", optional = true } -wasmer-compiler-llvm = { version = "1.0.0-rc1", path = "../compiler-llvm", optional = true } -wasmer-emscripten = { version = "1.0.0-rc1", path = "../emscripten", optional = true } -wasmer-engine = { version = "1.0.0-rc1", path = "../engine" } -wasmer-engine-jit = { version = "1.0.0-rc1", path = "../engine-jit", optional = true } -wasmer-engine-native = { version = "1.0.0-rc1", path = "../engine-native", optional = true } -wasmer-engine-object-file = { version = "1.0.0-rc1", path = "../engine-object-file", optional = true } -wasmer-vm = { version = "1.0.0-rc1", path = "../vm" } -wasmer-wasi = { version = "1.0.0-rc1", path = "../wasi", optional = true } -wasmer-wasi-experimental-io-devices = { version = "1.0.0-rc1", path = "../wasi-experimental-io-devices", optional = true } -wasmer-wast = { version = "1.0.0-rc1", path = "../../tests/lib/wast", optional = true } -wasmer-cache = { version = "1.0.0-rc1", path = "../cache", optional = true } -wasmer-types = { version = "1.0.0-rc1", path = "../wasmer-types" } +wasmer = { version = "1.0.0", path = "../api", default-features = false } +wasmer-compiler = { version = "1.0.0", path = "../compiler" } +wasmer-compiler-cranelift = { version = "1.0.0", path = "../compiler-cranelift", optional = true } +wasmer-compiler-singlepass = { version = "1.0.0", path = "../compiler-singlepass", optional = true } +wasmer-compiler-llvm = { version = "1.0.0", path = "../compiler-llvm", optional = true } +wasmer-emscripten = { version = "1.0.0", path = "../emscripten", optional = true } +wasmer-engine = { version = "1.0.0", path = "../engine" } +wasmer-engine-jit = { version = "1.0.0", path = "../engine-jit", optional = true } +wasmer-engine-native = { version = "1.0.0", path = "../engine-native", optional = true } +wasmer-engine-object-file = { version = "1.0.0", path = "../engine-object-file", optional = true } +wasmer-vm = { version = "1.0.0", path = "../vm" } +wasmer-wasi = { version = "1.0.0", path = "../wasi", optional = true } +wasmer-wasi-experimental-io-devices = { version = "1.0.0", path = "../wasi-experimental-io-devices", optional = true } +wasmer-wast = { version = "1.0.0", path = "../../tests/lib/wast", optional = true } +wasmer-cache = { version = "1.0.0", path = "../cache", optional = true } +wasmer-types = { version = "1.0.0", path = "../wasmer-types" } atty = "0.2" colored = "2.0" anyhow = "1.0" diff --git a/lib/compiler-cranelift/Cargo.toml b/lib/compiler-cranelift/Cargo.toml index d3ddf688e5b..3b97068ca3a 100644 --- a/lib/compiler-cranelift/Cargo.toml +++ b/lib/compiler-cranelift/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-compiler-cranelift" -version = "1.0.0-rc1" +version = "1.0.0" description = "Cranelift compiler for Wasmer WebAssembly runtime" categories = ["wasm"] keywords = ["wasm", "webassembly", "compiler", "cranelift"] @@ -12,9 +12,9 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-compiler = { path = "../compiler", version = "1.0.0-rc1", features = ["translator"], default-features = false } -wasmer-vm = { path = "../vm", version = "1.0.0-rc1" } -wasmer-types = { path = "../wasmer-types", version = "1.0.0-rc1", default-features = false, features = ["std"] } +wasmer-compiler = { path = "../compiler", version = "1.0.0", features = ["translator"], default-features = false } +wasmer-vm = { path = "../vm", version = "1.0.0" } +wasmer-types = { path = "../wasmer-types", version = "1.0.0", default-features = false, features = ["std"] } cranelift-codegen = { version = "0.68", default-features = false, features = ["x86", "arm64"] } cranelift-frontend = { version = "0.68", default-features = false } tracing = "0.1" diff --git a/lib/compiler-llvm/Cargo.toml b/lib/compiler-llvm/Cargo.toml index c414f0969d9..7429131acb3 100644 --- a/lib/compiler-llvm/Cargo.toml +++ b/lib/compiler-llvm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-compiler-llvm" -version = "1.0.0-rc1" +version = "1.0.0" description = "LLVM compiler for Wasmer WebAssembly runtime" categories = ["wasm"] keywords = ["wasm", "webassembly", "compiler", "llvm"] @@ -12,9 +12,9 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-compiler = { path = "../compiler", version = "1.0.0-rc1", features = ["translator"] } -wasmer-vm = { path = "../vm", version = "1.0.0-rc1" } -wasmer-types = { path = "../wasmer-types", version = "1.0.0-rc1" } +wasmer-compiler = { path = "../compiler", version = "1.0.0", features = ["translator"] } +wasmer-vm = { path = "../vm", version = "1.0.0" } +wasmer-types = { path = "../wasmer-types", version = "1.0.0" } target-lexicon = { version = "0.11", default-features = false } smallvec = "1.5" goblin = "0.2" diff --git a/lib/compiler-singlepass/Cargo.toml b/lib/compiler-singlepass/Cargo.toml index f8f13ea1a12..466c3653f72 100644 --- a/lib/compiler-singlepass/Cargo.toml +++ b/lib/compiler-singlepass/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-compiler-singlepass" -version = "1.0.0-rc1" +version = "1.0.0" description = "Singlepass compiler for Wasmer WebAssembly runtime" categories = ["wasm"] keywords = ["wasm", "webassembly", "compiler", "singlepass"] @@ -12,9 +12,9 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-compiler = { path = "../compiler", version = "1.0.0-rc1", features = ["translator"], default-features = false } -wasmer-vm = { path = "../vm", version = "1.0.0-rc1" } -wasmer-types = { path = "../wasmer-types", version = "1.0.0-rc1", default-features = false, features = ["std"] } +wasmer-compiler = { path = "../compiler", version = "1.0.0", features = ["translator"], default-features = false } +wasmer-vm = { path = "../vm", version = "1.0.0" } +wasmer-types = { path = "../wasmer-types", version = "1.0.0", default-features = false, features = ["std"] } rayon = "1.5" hashbrown = { version = "0.9", optional = true } serde = { version = "1.0", features = ["derive"] } diff --git a/lib/compiler/Cargo.toml b/lib/compiler/Cargo.toml index f9e3cc0f697..0aadaf11ff7 100644 --- a/lib/compiler/Cargo.toml +++ b/lib/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-compiler" -version = "1.0.0-rc1" +version = "1.0.0" description = "Base compiler abstraction for Wasmer WebAssembly runtime" categories = ["wasm", "no-std"] keywords = ["wasm", "webassembly", "compiler"] @@ -11,8 +11,8 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-vm = { path = "../vm", version = "1.0.0-rc1" } -wasmer-types = { path = "../wasmer-types", version = "1.0.0-rc1", default-features = false } +wasmer-vm = { path = "../vm", version = "1.0.0" } +wasmer-types = { path = "../wasmer-types", version = "1.0.0", default-features = false } wasmparser = { version = "0.65", optional = true, default-features = false } target-lexicon = { version = "0.11", default-features = false } enumset = "1.0" diff --git a/lib/deprecated/runtime-core/Cargo.lock b/lib/deprecated/runtime-core/Cargo.lock index c9144d51518..257932dff6e 100644 --- a/lib/deprecated/runtime-core/Cargo.lock +++ b/lib/deprecated/runtime-core/Cargo.lock @@ -1158,7 +1158,7 @@ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" [[package]] name = "wasmer" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "cfg-if 0.1.10", "indexmap", @@ -1181,7 +1181,7 @@ dependencies = [ [[package]] name = "wasmer-cache" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "blake3", "hex", @@ -1191,7 +1191,7 @@ dependencies = [ [[package]] name = "wasmer-compiler" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "enumset", "raw-cpuid", @@ -1207,7 +1207,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-cranelift" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "cranelift-codegen", "cranelift-frontend", @@ -1224,7 +1224,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-llvm" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "byteorder", "cc", @@ -1246,7 +1246,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-singlepass" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "byteorder", "dynasm", @@ -1263,7 +1263,7 @@ dependencies = [ [[package]] name = "wasmer-derive" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "proc-macro-error", "proc-macro2", @@ -1273,7 +1273,7 @@ dependencies = [ [[package]] name = "wasmer-engine" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "backtrace", "bincode", @@ -1292,7 +1292,7 @@ dependencies = [ [[package]] name = "wasmer-engine-jit" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "bincode", "cfg-if 0.1.10", @@ -1308,7 +1308,7 @@ dependencies = [ [[package]] name = "wasmer-engine-native" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "bincode", "cfg-if 0.1.10", @@ -1327,7 +1327,7 @@ dependencies = [ [[package]] name = "wasmer-object" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "object 0.22.0", "thiserror", @@ -1355,7 +1355,7 @@ dependencies = [ [[package]] name = "wasmer-types" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "cranelift-entity", "serde", @@ -1364,7 +1364,7 @@ dependencies = [ [[package]] name = "wasmer-vm" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "backtrace", "cc", diff --git a/lib/deprecated/runtime-core/Cargo.toml b/lib/deprecated/runtime-core/Cargo.toml index ca899a8813e..8ec23a6cd78 100644 --- a/lib/deprecated/runtime-core/Cargo.toml +++ b/lib/deprecated/runtime-core/Cargo.toml @@ -14,16 +14,16 @@ edition = "2018" maintenance = { status = "deprecated" } [dependencies] -wasmer-types = { path = "../../wasmer-types", version = "1.0.0-rc1" } -wasmer = { path = "../../api", version = "1.0.0-rc1", features = ["deprecated"] } -wasmer-cache = { path = "../../cache", version = "1.0.0-rc1" } -wasmer-compiler = { path = "../../compiler", version = "1.0.0-rc1", features = ["translator"] } -wasmer-compiler-llvm = { path = "../../compiler-llvm", version = "1.0.0-rc1", optional = true } -wasmer-compiler-cranelift = { path = "../../compiler-cranelift", version = "1.0.0-rc1", optional = true } -wasmer-compiler-singlepass = { path = "../../compiler-singlepass", version = "1.0.0-rc1", optional = true } -wasmer-engine = { path = "../../engine", version = "1.0.0-rc1" } -wasmer-engine-jit = { path = "../../engine-jit", version = "1.0.0-rc1" } -wasmer-vm = { path = "../../vm", version = "1.0.0-rc1" } +wasmer-types = { path = "../../wasmer-types", version = "1.0.0" } +wasmer = { path = "../../api", version = "1.0.0", features = ["deprecated"] } +wasmer-cache = { path = "../../cache", version = "1.0.0" } +wasmer-compiler = { path = "../../compiler", version = "1.0.0", features = ["translator"] } +wasmer-compiler-llvm = { path = "../../compiler-llvm", version = "1.0.0", optional = true } +wasmer-compiler-cranelift = { path = "../../compiler-cranelift", version = "1.0.0", optional = true } +wasmer-compiler-singlepass = { path = "../../compiler-singlepass", version = "1.0.0", optional = true } +wasmer-engine = { path = "../../engine", version = "1.0.0" } +wasmer-engine-jit = { path = "../../engine-jit", version = "1.0.0" } +wasmer-vm = { path = "../../vm", version = "1.0.0" } lazy_static = "1.4" [build-dependencies] diff --git a/lib/deprecated/runtime/Cargo.lock b/lib/deprecated/runtime/Cargo.lock index 2d409286786..cc2b0fb9638 100644 --- a/lib/deprecated/runtime/Cargo.lock +++ b/lib/deprecated/runtime/Cargo.lock @@ -1158,7 +1158,7 @@ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" [[package]] name = "wasmer" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "cfg-if 0.1.10", "indexmap", @@ -1181,7 +1181,7 @@ dependencies = [ [[package]] name = "wasmer-cache" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "blake3", "hex", @@ -1191,7 +1191,7 @@ dependencies = [ [[package]] name = "wasmer-compiler" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "enumset", "raw-cpuid", @@ -1207,7 +1207,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-cranelift" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "cranelift-codegen", "cranelift-frontend", @@ -1224,7 +1224,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-llvm" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "byteorder", "cc", @@ -1246,7 +1246,7 @@ dependencies = [ [[package]] name = "wasmer-compiler-singlepass" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "byteorder", "dynasm", @@ -1263,7 +1263,7 @@ dependencies = [ [[package]] name = "wasmer-derive" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "proc-macro-error", "proc-macro2", @@ -1273,7 +1273,7 @@ dependencies = [ [[package]] name = "wasmer-engine" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "backtrace", "bincode", @@ -1292,7 +1292,7 @@ dependencies = [ [[package]] name = "wasmer-engine-jit" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "bincode", "cfg-if 0.1.10", @@ -1308,7 +1308,7 @@ dependencies = [ [[package]] name = "wasmer-engine-native" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "bincode", "cfg-if 0.1.10", @@ -1327,7 +1327,7 @@ dependencies = [ [[package]] name = "wasmer-object" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "object 0.22.0", "thiserror", @@ -1362,7 +1362,7 @@ dependencies = [ [[package]] name = "wasmer-types" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "cranelift-entity", "serde", @@ -1371,7 +1371,7 @@ dependencies = [ [[package]] name = "wasmer-vm" -version = "1.0.0-rc1" +version = "1.0.0" dependencies = [ "backtrace", "cc", diff --git a/lib/derive/Cargo.toml b/lib/derive/Cargo.toml index 6bed29c4bbd..acf73730de3 100644 --- a/lib/derive/Cargo.toml +++ b/lib/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-derive" -version = "1.0.0-rc1" +version = "1.0.0" description = "Wasmer derive macros" authors = ["Wasmer Engineering Team "] 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-rc1" } +wasmer = { path = "../api", version = "1.0.0" } compiletest_rs = "0.5" diff --git a/lib/emscripten/Cargo.toml b/lib/emscripten/Cargo.toml index cf4448d828c..73d8a75e7ff 100644 --- a/lib/emscripten/Cargo.toml +++ b/lib/emscripten/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-emscripten" -version = "1.0.0-rc1" +version = "1.0.0" description = "Emscripten implementation library for Wasmer WebAssembly runtime" categories = ["wasm", "os"] keywords = ["wasm", "webassembly", "abi", "emscripten", "posix"] @@ -16,7 +16,7 @@ lazy_static = "1.4" libc = "^0.2" log = "0.4" time = "0.1" -wasmer = { path = "../api", version = "1.0.0-rc1", default-features = false } +wasmer = { path = "../api", version = "1.0.0", default-features = false } [target.'cfg(windows)'.dependencies] getrandom = "0.2" diff --git a/lib/engine-jit/Cargo.toml b/lib/engine-jit/Cargo.toml index 8b3fb2ac914..c3f95830af2 100644 --- a/lib/engine-jit/Cargo.toml +++ b/lib/engine-jit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-engine-jit" -version = "1.0.0-rc1" +version = "1.0.0" description = "Wasmer JIT Engine" categories = ["wasm"] keywords = ["wasm", "webassembly", "engine", "jit"] @@ -11,10 +11,10 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-types = { path = "../wasmer-types", version = "1.0.0-rc1" } -wasmer-compiler = { path = "../compiler", version = "1.0.0-rc1", features = ["translator"] } -wasmer-vm = { path = "../vm", version = "1.0.0-rc1" } -wasmer-engine = { path = "../engine", version = "1.0.0-rc1" } +wasmer-types = { path = "../wasmer-types", version = "1.0.0" } +wasmer-compiler = { path = "../compiler", version = "1.0.0", features = ["translator"] } +wasmer-vm = { path = "../vm", version = "1.0.0" } +wasmer-engine = { path = "../engine", version = "1.0.0" } # flexbuffers = { path = "../../../flatbuffers/rust/flexbuffers", version = "0.1.0" } region = "2.2" serde = { version = "1.0", features = ["derive", "rc"] } diff --git a/lib/engine-native/Cargo.toml b/lib/engine-native/Cargo.toml index 754aa8cc2a6..7e118bbcf32 100644 --- a/lib/engine-native/Cargo.toml +++ b/lib/engine-native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-engine-native" -version = "1.0.0-rc1" +version = "1.0.0" description = "Wasmer Native Engine" categories = ["wasm"] keywords = ["wasm", "webassembly", "engine", "native"] @@ -11,11 +11,11 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-types = { path = "../wasmer-types", version = "1.0.0-rc1" } -wasmer-compiler = { path = "../compiler", version = "1.0.0-rc1" } -wasmer-vm = { path = "../vm", version = "1.0.0-rc1" } -wasmer-engine = { path = "../engine", version = "1.0.0-rc1" } -wasmer-object = { path = "../object", version = "1.0.0-rc1" } +wasmer-types = { path = "../wasmer-types", version = "1.0.0" } +wasmer-compiler = { path = "../compiler", version = "1.0.0" } +wasmer-vm = { path = "../vm", version = "1.0.0" } +wasmer-engine = { path = "../engine", version = "1.0.0" } +wasmer-object = { path = "../object", version = "1.0.0" } serde = { version = "1.0", features = ["derive", "rc"] } cfg-if = "0.1" tracing = "0.1" diff --git a/lib/engine-object-file/Cargo.toml b/lib/engine-object-file/Cargo.toml index 3ca705abe3f..1cbb94b2d3f 100644 --- a/lib/engine-object-file/Cargo.toml +++ b/lib/engine-object-file/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-engine-object-file" -version = "1.0.0-rc1" +version = "1.0.0" authors = ["Wasmer Engineering Team "] description = "Wasmer Object File Engine" categories = ["wasm"] @@ -11,11 +11,11 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-types = { path = "../wasmer-types", version = "1.0.0-rc1" } -wasmer-compiler = { path = "../compiler", version = "1.0.0-rc1" } -wasmer-vm = { path = "../vm", version = "1.0.0-rc1" } -wasmer-engine = { path = "../engine", version = "1.0.0-rc1" } -wasmer-object = { path = "../object", version = "1.0.0-rc1" } +wasmer-types = { path = "../wasmer-types", version = "1.0.0" } +wasmer-compiler = { path = "../compiler", version = "1.0.0" } +wasmer-vm = { path = "../vm", version = "1.0.0" } +wasmer-engine = { path = "../engine", version = "1.0.0" } +wasmer-object = { path = "../object", version = "1.0.0" } serde = { version = "1.0", features = ["derive", "rc"] } cfg-if = "0.1" tracing = "0.1" diff --git a/lib/engine-object-file/README.md b/lib/engine-object-file/README.md index 82ca42300a1..accceaed8e9 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-rc1) WebAssembly VM. +This is an [engine](https://crates.io/crates/wasmer-engine) for the [wasmer](https://crates.io/crates/wasmer/1.0.0) 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/engine/Cargo.toml b/lib/engine/Cargo.toml index 14b55d67f05..0fe158565c9 100644 --- a/lib/engine/Cargo.toml +++ b/lib/engine/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-engine" -version = "1.0.0-rc1" +version = "1.0.0" description = "Wasmer Engine abstraction" categories = ["wasm"] keywords = ["wasm", "webassembly", "engine"] @@ -11,9 +11,9 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-types = { path = "../wasmer-types", version = "1.0.0-rc1" } -wasmer-compiler = { path = "../compiler", version = "1.0.0-rc1" } -wasmer-vm = { path = "../vm", version = "1.0.0-rc1" } +wasmer-types = { path = "../wasmer-types", version = "1.0.0" } +wasmer-compiler = { path = "../compiler", version = "1.0.0" } +wasmer-vm = { path = "../vm", version = "1.0.0" } target-lexicon = { version = "0.11", default-features = false } # flexbuffers = { path = "../../../flatbuffers/rust/flexbuffers", version = "0.1.0" } backtrace = "0.3" diff --git a/lib/middlewares/Cargo.toml b/lib/middlewares/Cargo.toml index a854681d47a..cd41f39ead7 100644 --- a/lib/middlewares/Cargo.toml +++ b/lib/middlewares/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-middlewares" -version = "1.0.0-rc1" +version = "1.0.0" authors = ["Wasmer Engineering Team "] description = "A collection of various useful middlewares" license = "MIT OR Apache-2.0 WITH LLVM-exception" @@ -11,9 +11,9 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer = { path = "../api", version = "1.0.0-rc1" } -wasmer-types = { path = "../wasmer-types", version = "1.0.0-rc1" } -wasmer-vm = { path = "../vm", version = "1.0.0-rc1" } +wasmer = { path = "../api", version = "1.0.0" } +wasmer-types = { path = "../wasmer-types", version = "1.0.0" } +wasmer-vm = { path = "../vm", version = "1.0.0" } [badges] maintenance = { status = "actively-developed" } diff --git a/lib/object/Cargo.toml b/lib/object/Cargo.toml index 467d8444e28..4b00aff860f 100644 --- a/lib/object/Cargo.toml +++ b/lib/object/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-object" -version = "1.0.0-rc1" +version = "1.0.0" description = "Wasmer Native Object generator" categories = ["wasm"] keywords = ["wasm", "webassembly"] @@ -11,8 +11,8 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-types = { path = "../wasmer-types", version = "1.0.0-rc1" } -wasmer-compiler = { path = "../compiler", version = "1.0.0-rc1", default-features = false, features = [ +wasmer-types = { path = "../wasmer-types", version = "1.0.0" } +wasmer-compiler = { path = "../compiler", version = "1.0.0", default-features = false, features = [ "std", "translator" ] } diff --git a/lib/vm/Cargo.toml b/lib/vm/Cargo.toml index 25fa71db749..9ea47881172 100644 --- a/lib/vm/Cargo.toml +++ b/lib/vm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-vm" -version = "1.0.0-rc1" +version = "1.0.0" description = "Runtime library support for Wasmer" categories = ["wasm"] keywords = ["wasm", "webassembly"] @@ -11,7 +11,7 @@ readme = "README.md" edition = "2018" [dependencies] -wasmer-types = { path = "../wasmer-types", version = "1.0.0-rc1" } +wasmer-types = { path = "../wasmer-types", version = "1.0.0" } region = "2.2" libc = { version = "^0.2", default-features = false } memoffset = "0.6" diff --git a/lib/wasi-experimental-io-devices/Cargo.toml b/lib/wasi-experimental-io-devices/Cargo.toml index eda399744f5..ac2326297b9 100644 --- a/lib/wasi-experimental-io-devices/Cargo.toml +++ b/lib/wasi-experimental-io-devices/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasi-experimental-io-devices" -version = "1.0.0-rc1" +version = "1.0.0" description = "An experimental non-standard WASI extension for graphics" categories = ["wasm"] keywords = ["wasm", "webassembly", "types"] @@ -14,7 +14,7 @@ edition = "2018" maintenance = { status = "experimental" } [dependencies] -wasmer-wasi = { version = "1.0.0-rc1", path = "../wasi" } +wasmer-wasi = { version = "1.0.0", path = "../wasi" } tracing = "0.1" minifb = "0.19" ref_thread_local = "0.0" diff --git a/lib/wasi/Cargo.toml b/lib/wasi/Cargo.toml index d78fb1a3492..4d54c863ef0 100644 --- a/lib/wasi/Cargo.toml +++ b/lib/wasi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wasi" -version = "1.0.0-rc1" +version = "1.0.0" description = "WASI implementation library for Wasmer WebAssembly runtime" categories = ["wasm", "os"] keywords = ["wasm", "webassembly", "wasi", "sandbox", "ABI"] @@ -21,7 +21,7 @@ getrandom = "0.2" time = "0.1" typetag = "0.1" serde = { version = "1.0", features = ["derive"] } -wasmer = { path = "../api", version = "1.0.0-rc1", default-features = false } +wasmer = { path = "../api", version = "1.0.0", default-features = false } [target.'cfg(windows)'.dependencies] winapi = "0.3" diff --git a/lib/wasmer-types/Cargo.toml b/lib/wasmer-types/Cargo.toml index 09f7c1e3b82..95fee214052 100644 --- a/lib/wasmer-types/Cargo.toml +++ b/lib/wasmer-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-types" -version = "1.0.0-rc1" +version = "1.0.0" description = "Wasmer Common Types" categories = ["wasm", "no-std", "data-structures"] keywords = ["wasm", "webassembly", "types"] diff --git a/scripts/publish.py b/scripts/publish.py index b4aed90899c..de709de72fd 100644 --- a/scripts/publish.py +++ b/scripts/publish.py @@ -21,7 +21,7 @@ # TODO: find this automatically -target_version = "1.0.0-rc1" +target_version = "1.0.0" # TODO: generate this by parsing toml files dep_graph = { diff --git a/scripts/update-version.sh b/scripts/update-version.sh index cd4fa6fc75c..07ba5dfd67c 100755 --- a/scripts/update-version.sh +++ b/scripts/update-version.sh @@ -4,8 +4,8 @@ : "${FD:=fd}" # A script to update the version of all the crates at the same time -PREVIOUS_VERSION='1.0.0-beta2' -NEXT_VERSION='1.0.0-rc1' +PREVIOUS_VERSION='1.0.0-rc1' +NEXT_VERSION='1.0.0' # quick hack ${FD} Cargo.toml --exec sed -i '{}' -e "s/version = \"$PREVIOUS_VERSION\"/version = \"$NEXT_VERSION\"/" diff --git a/scripts/windows-installer/wasmer.iss b/scripts/windows-installer/wasmer.iss index ee75e381d94..e1556fb2442 100644 --- a/scripts/windows-installer/wasmer.iss +++ b/scripts/windows-installer/wasmer.iss @@ -1,6 +1,6 @@ [Setup] AppName=Wasmer -AppVersion=1.0.0-rc1 +AppVersion=1.0.0 DefaultDirName={pf}\Wasmer DefaultGroupName=Wasmer Compression=lzma2 diff --git a/tests/integration/cli/Cargo.toml b/tests/integration/cli/Cargo.toml index 1c35f60bee1..f04c8b66475 100644 --- a/tests/integration/cli/Cargo.toml +++ b/tests/integration/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-integration-tests-cli" -version = "1.0.0-rc1" +version = "1.0.0" authors = ["Wasmer Engineering Team "] description = "CLI integration tests" repository = "https://github.com/wasmerio/wasmer" diff --git a/tests/lib/engine-dummy/Cargo.toml b/tests/lib/engine-dummy/Cargo.toml index 38dde16c131..543d770c68e 100644 --- a/tests/lib/engine-dummy/Cargo.toml +++ b/tests/lib/engine-dummy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-engine-dummy" -version = "1.0.0-rc1" +version = "1.0.0" authors = ["Wasmer Engineering Team "] description = "Wasmer placeholder engine" license = "MIT" @@ -8,10 +8,10 @@ edition = "2018" publish = false [dependencies] -wasmer-types = { path = "../../../lib/wasmer-types", version = "1.0.0-rc1" } -wasmer-compiler = { path = "../../../lib/compiler", version = "1.0.0-rc1" } -wasmer-vm = { path = "../../../lib/vm", version = "1.0.0-rc1" } -wasmer-engine = { path = "../../../lib/engine", version = "1.0.0-rc1" } +wasmer-types = { path = "../../../lib/wasmer-types", version = "1.0.0" } +wasmer-compiler = { path = "../../../lib/compiler", version = "1.0.0" } +wasmer-vm = { path = "../../../lib/vm", version = "1.0.0" } +wasmer-engine = { path = "../../../lib/engine", version = "1.0.0" } serde = { version = "1.0", features = ["derive", "rc"], optional = true } serde_bytes = { version = "0.11", optional = true } bincode = { version = "1.2", optional = true } diff --git a/tests/lib/wast/Cargo.toml b/tests/lib/wast/Cargo.toml index 707ea9caa73..5f5e5cbb2ec 100644 --- a/tests/lib/wast/Cargo.toml +++ b/tests/lib/wast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-wast" -version = "1.0.0-rc1" +version = "1.0.0" authors = ["Wasmer Engineering Team "] description = "wast testing support for wasmer" license = "MIT OR (Apache-2.0 WITH LLVM-exception)" @@ -12,8 +12,8 @@ edition = "2018" [dependencies] anyhow = "1.0" -wasmer = { path = "../../../lib/api", version = "1.0.0-rc1", default-features = false } -wasmer-wasi = { path = "../../../lib/wasi", version = "1.0.0-rc1" } +wasmer = { path = "../../../lib/api", version = "1.0.0", default-features = false } +wasmer-wasi = { path = "../../../lib/wasi", version = "1.0.0" } wast = "24.0" serde = "1" tempfile = "3"