Skip to content

Commit

Permalink
Bump version number to 2.0.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark McCaskey committed Jun 2, 2021
1 parent 5dd9079 commit 2897a5b
Show file tree
Hide file tree
Showing 30 changed files with 160 additions and 158 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@

Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/CHANGELOG.md).


## **[Unreleased]**

## 2.0.0-rc1 - 2020/06/02

### Added
- [#2306](https://github.com/wasmerio/wasmer/pull/2306) Add support for the latest version of the Wasm SIMD proposal to compiler LLVM.
- [#2296](https://github.com/wasmerio/wasmer/pull/2296) Add support for the bulk memory proposal in compiler Singlepass and compiler LLVM.
Expand Down
48 changes: 24 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-workspace"
version = "1.0.2"
version = "2.0.0-rc"
description = "Wasmer workspace"
authors = ["Wasmer Engineering Team <[email protected]>"]
repository = "https://github.com/wasmerio/wasmer"
Expand All @@ -10,21 +10,21 @@ publish = false
autoexamples = false

[dependencies]
wasmer = { version = "1.0.2", path = "lib/api", default-features = false }
wasmer-compiler = { version = "1.0.2", path = "lib/compiler" }
wasmer-compiler-cranelift = { version = "1.0.2", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "1.0.2", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "1.0.2", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "1.0.2", path = "lib/emscripten", optional = true }
wasmer-engine = { version = "1.0.2", path = "lib/engine" }
wasmer-engine-universal = { version = "1.0.2", path = "lib/engine-universal", optional = true }
wasmer-engine-dylib = { version = "1.0.2", path = "lib/engine-dylib", optional = true }
wasmer-engine-staticlib = { version = "1.0.2", path = "lib/engine-staticlib", optional = true }
wasmer-wasi = { version = "1.0.2", path = "lib/wasi", optional = true }
wasmer-wast = { version = "1.0.2", path = "tests/lib/wast", optional = true }
wasmer-cache = { version = "1.0.2", path = "lib/cache", optional = true }
wasmer-types = { version = "1.0.2", path = "lib/types" }
wasmer-middlewares = { version = "1.0.2", path = "lib/middlewares", optional = true }
wasmer = { version = "2.0.0-rc", path = "lib/api", default-features = false }
wasmer-compiler = { version = "2.0.0-rc", path = "lib/compiler" }
wasmer-compiler-cranelift = { version = "2.0.0-rc", path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "2.0.0-rc", path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "2.0.0-rc", path = "lib/compiler-llvm", optional = true }
wasmer-emscripten = { version = "2.0.0-rc", path = "lib/emscripten", optional = true }
wasmer-engine = { version = "2.0.0-rc", path = "lib/engine" }
wasmer-engine-universal = { version = "2.0.0-rc", path = "lib/engine-universal", optional = true }
wasmer-engine-dylib = { version = "2.0.0-rc", path = "lib/engine-dylib", optional = true }
wasmer-engine-staticlib = { version = "2.0.0-rc", path = "lib/engine-staticlib", optional = true }
wasmer-wasi = { version = "2.0.0-rc", path = "lib/wasi", optional = true }
wasmer-wast = { version = "2.0.0-rc", path = "tests/lib/wast", optional = true }
wasmer-cache = { version = "2.0.0-rc", path = "lib/cache", optional = true }
wasmer-types = { version = "2.0.0-rc", path = "lib/types" }
wasmer-middlewares = { version = "2.0.0-rc", path = "lib/middlewares", optional = true }
cfg-if = "1.0"

[workspace]
Expand Down
22 changes: 11 additions & 11 deletions lib/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer"
version = "1.0.2"
version = "2.0.0-rc"
description = "High-performant WebAssembly runtime"
categories = ["wasm"]
keywords = ["wasm", "webassembly", "runtime", "vm"]
Expand All @@ -11,16 +11,16 @@ readme = "README.md"
edition = "2018"

[dependencies]
wasmer-vm = { path = "../vm", version = "1.0.2" }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "1.0.2", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "1.0.2", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "1.0.2", optional = true }
wasmer-compiler = { path = "../compiler", version = "1.0.2" }
wasmer-derive = { path = "../derive", version = "1.0.2" }
wasmer-engine = { path = "../engine", version = "1.0.2" }
wasmer-engine-universal = { path = "../engine-universal", version = "1.0.2", optional = true }
wasmer-engine-dylib = { path = "../engine-dylib", version = "1.0.2", optional = true }
wasmer-types = { path = "../types", version = "1.0.2" }
wasmer-vm = { path = "../vm", version = "2.0.0-rc" }
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "2.0.0-rc", optional = true }
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "2.0.0-rc", optional = true }
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "2.0.0-rc", optional = true }
wasmer-compiler = { path = "../compiler", version = "2.0.0-rc" }
wasmer-derive = { path = "../derive", version = "2.0.0-rc" }
wasmer-engine = { path = "../engine", version = "2.0.0-rc" }
wasmer-engine-universal = { path = "../engine-universal", version = "2.0.0-rc", optional = true }
wasmer-engine-dylib = { path = "../engine-dylib", version = "2.0.0-rc", optional = true }
wasmer-types = { path = "../types", version = "2.0.0-rc" }
indexmap = { version = "1.6", features = ["serde-1"] }
cfg-if = "1.0"
wat = { version = "1.0", optional = true }
Expand Down
3 changes: 2 additions & 1 deletion lib/c-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@

Looking for changes to the Wasmer CLI and the Rust API? See our [Primary Changelog](../../CHANGELOG.md)


## **[Unreleased]**

## 2.0.0-rc1 - 2020/06/02

### Added
- [#2346](https://github.com/wasmerio/wasmer/pull/2346) Add missing `wasm_func_copy` function.
- [#2208](https://github.com/wasmerio/wasmer/pull/2208) Add a new CHANGELOG.md specific to our C API to make it easier for users primarily consuming our C API to keep up to date with changes that affect them.
Expand Down
26 changes: 13 additions & 13 deletions lib/c-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmer-c-api"
version = "1.0.2"
version = "2.0.0-rc"
description = "Wasmer C API library"
categories = ["wasm", "api-bindings"]
keywords = ["wasm", "webassembly", "runtime"]
Expand All @@ -15,18 +15,18 @@ edition = "2018"
crate-type = ["cdylib", "rlib", "staticlib"]

[dependencies]
wasmer = { version = "1.0.2", path = "../api", default-features = false }
wasmer-compiler-cranelift = { version = "1.0.2", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "1.0.2", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "1.0.2", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "1.0.2", path = "../emscripten", optional = true }
wasmer-engine = { version = "1.0.2", path = "../engine" }
wasmer-engine-universal = { version = "1.0.2", path = "../engine-universal", optional = true }
wasmer-engine-dylib = { version = "1.0.2", path = "../engine-dylib", optional = true }
wasmer-engine-staticlib = { version = "1.0.2", path = "../engine-staticlib", optional = true }
wasmer-middlewares = { version = "1.0.2", path = "../middlewares", optional = true }
wasmer-wasi = { version = "1.0.2", path = "../wasi", optional = true }
wasmer-types = { version = "1.0.2", path = "../types" }
wasmer = { version = "2.0.0-rc", path = "../api", default-features = false }
wasmer-compiler-cranelift = { version = "2.0.0-rc", path = "../compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { version = "2.0.0-rc", path = "../compiler-singlepass", optional = true }
wasmer-compiler-llvm = { version = "2.0.0-rc", path = "../compiler-llvm", optional = true }
wasmer-emscripten = { version = "2.0.0-rc", path = "../emscripten", optional = true }
wasmer-engine = { version = "2.0.0-rc", path = "../engine" }
wasmer-engine-universal = { version = "2.0.0-rc", path = "../engine-universal", optional = true }
wasmer-engine-dylib = { version = "2.0.0-rc", path = "../engine-dylib", optional = true }
wasmer-engine-staticlib = { version = "2.0.0-rc", path = "../engine-staticlib", optional = true }
wasmer-middlewares = { version = "2.0.0-rc", path = "../middlewares", optional = true }
wasmer-wasi = { version = "2.0.0-rc", path = "../wasi", optional = true }
wasmer-types = { version = "2.0.0-rc", path = "../types" }
enumset = "1.0"
cfg-if = "1.0"
lazy_static = "1.4"
Expand Down
8 changes: 4 additions & 4 deletions lib/c-api/wasmer.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@
#define WASMER_MIDDLEWARES_ENABLED

// This file corresponds to the following Wasmer version.
#define WASMER_VERSION "1.0.2"
#define WASMER_VERSION_MAJOR 1
#define WASMER_VERSION "2.0.0-rc"
#define WASMER_VERSION_MAJOR 2
#define WASMER_VERSION_MINOR 0
#define WASMER_VERSION_PATCH 2
#define WASMER_VERSION_PRE ""
#define WASMER_VERSION_PATCH 0
#define WASMER_VERSION_PRE "rc"

#endif // WASMER_H_PRELUDE

Expand Down
Loading

0 comments on commit 2897a5b

Please sign in to comment.