Skip to content

Commit 327192c

Browse files
bors[bot]Mark McCaskey
and
Mark McCaskey
authored
Merge #2423
2423: Prepare for 2.0.0 release r=MarkMcCaskey a=MarkMcCaskey # Review - [x] Add a short description of the change to the CHANGELOG.md file Co-authored-by: Mark McCaskey <mark@wasmer.io>
2 parents e6c8fcd + 0c0fdad commit 327192c

File tree

31 files changed

+162
-160
lines changed

31 files changed

+162
-160
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Looking for changes that affect our C API? See the [C API Changelog](lib/c-api/C
88

99
## **[Unreleased]**
1010

11+
## 2.0.0 - 2020/06/16
12+
1113
### Added
1214
- [#2411](https://github.com/wasmerio/wasmer/pull/2411) Extract types from `wasi` to a new `wasi-types` crate.
1315
- [#2390](https://github.com/wasmerio/wasmer/pull/2390) Make `wasmer-vm` to compile on Windows 32bits.

Cargo.lock

+25-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-workspace"
3-
version = "2.0.0-rc2"
3+
version = "2.0.0"
44
description = "Wasmer workspace"
55
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
66
repository = "https://github.com/wasmerio/wasmer"
@@ -10,21 +10,21 @@ publish = false
1010
autoexamples = false
1111

1212
[dependencies]
13-
wasmer = { version = "2.0.0-rc2", path = "lib/api", default-features = false }
14-
wasmer-compiler = { version = "2.0.0-rc2", path = "lib/compiler" }
15-
wasmer-compiler-cranelift = { version = "2.0.0-rc2", path = "lib/compiler-cranelift", optional = true }
16-
wasmer-compiler-singlepass = { version = "2.0.0-rc2", path = "lib/compiler-singlepass", optional = true }
17-
wasmer-compiler-llvm = { version = "2.0.0-rc2", path = "lib/compiler-llvm", optional = true }
18-
wasmer-emscripten = { version = "2.0.0-rc2", path = "lib/emscripten", optional = true }
19-
wasmer-engine = { version = "2.0.0-rc2", path = "lib/engine" }
20-
wasmer-engine-universal = { version = "2.0.0-rc2", path = "lib/engine-universal", optional = true }
21-
wasmer-engine-dylib = { version = "2.0.0-rc2", path = "lib/engine-dylib", optional = true }
22-
wasmer-engine-staticlib = { version = "2.0.0-rc2", path = "lib/engine-staticlib", optional = true }
23-
wasmer-wasi = { version = "2.0.0-rc2", path = "lib/wasi", optional = true }
24-
wasmer-wast = { version = "2.0.0-rc2", path = "tests/lib/wast", optional = true }
25-
wasmer-cache = { version = "2.0.0-rc2", path = "lib/cache", optional = true }
26-
wasmer-types = { version = "2.0.0-rc2", path = "lib/types" }
27-
wasmer-middlewares = { version = "2.0.0-rc2", path = "lib/middlewares", optional = true }
13+
wasmer = { version = "2.0.0", path = "lib/api", default-features = false }
14+
wasmer-compiler = { version = "2.0.0", path = "lib/compiler" }
15+
wasmer-compiler-cranelift = { version = "2.0.0", path = "lib/compiler-cranelift", optional = true }
16+
wasmer-compiler-singlepass = { version = "2.0.0", path = "lib/compiler-singlepass", optional = true }
17+
wasmer-compiler-llvm = { version = "2.0.0", path = "lib/compiler-llvm", optional = true }
18+
wasmer-emscripten = { version = "2.0.0", path = "lib/emscripten", optional = true }
19+
wasmer-engine = { version = "2.0.0", path = "lib/engine" }
20+
wasmer-engine-universal = { version = "2.0.0", path = "lib/engine-universal", optional = true }
21+
wasmer-engine-dylib = { version = "2.0.0", path = "lib/engine-dylib", optional = true }
22+
wasmer-engine-staticlib = { version = "2.0.0", path = "lib/engine-staticlib", optional = true }
23+
wasmer-wasi = { version = "2.0.0", path = "lib/wasi", optional = true }
24+
wasmer-wast = { version = "2.0.0", path = "tests/lib/wast", optional = true }
25+
wasmer-cache = { version = "2.0.0", path = "lib/cache", optional = true }
26+
wasmer-types = { version = "2.0.0", path = "lib/types" }
27+
wasmer-middlewares = { version = "2.0.0", path = "lib/middlewares", optional = true }
2828
cfg-if = "1.0"
2929

3030
[workspace]

lib/api/Cargo.toml

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer"
3-
version = "2.0.0-rc2"
3+
version = "2.0.0"
44
description = "High-performant WebAssembly runtime"
55
categories = ["wasm"]
66
keywords = ["wasm", "webassembly", "runtime", "vm"]
@@ -11,16 +11,16 @@ readme = "README.md"
1111
edition = "2018"
1212

1313
[dependencies]
14-
wasmer-vm = { path = "../vm", version = "2.0.0-rc2" }
15-
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "2.0.0-rc2", optional = true }
16-
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "2.0.0-rc2", optional = true }
17-
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "2.0.0-rc2", optional = true }
18-
wasmer-compiler = { path = "../compiler", version = "2.0.0-rc2" }
19-
wasmer-derive = { path = "../derive", version = "2.0.0-rc2" }
20-
wasmer-engine = { path = "../engine", version = "2.0.0-rc2" }
21-
wasmer-engine-universal = { path = "../engine-universal", version = "2.0.0-rc2", optional = true }
22-
wasmer-engine-dylib = { path = "../engine-dylib", version = "2.0.0-rc2", optional = true }
23-
wasmer-types = { path = "../types", version = "2.0.0-rc2" }
14+
wasmer-vm = { path = "../vm", version = "2.0.0" }
15+
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "2.0.0", optional = true }
16+
wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "2.0.0", optional = true }
17+
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "2.0.0", optional = true }
18+
wasmer-compiler = { path = "../compiler", version = "2.0.0" }
19+
wasmer-derive = { path = "../derive", version = "2.0.0" }
20+
wasmer-engine = { path = "../engine", version = "2.0.0" }
21+
wasmer-engine-universal = { path = "../engine-universal", version = "2.0.0", optional = true }
22+
wasmer-engine-dylib = { path = "../engine-dylib", version = "2.0.0", optional = true }
23+
wasmer-types = { path = "../types", version = "2.0.0" }
2424
indexmap = { version = "1.6", features = ["serde-1"] }
2525
cfg-if = "1.0"
2626
wat = { version = "1.0", optional = true }

lib/c-api/Cargo.toml

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-c-api"
3-
version = "2.0.0-rc2"
3+
version = "2.0.0"
44
description = "Wasmer C API library"
55
categories = ["wasm", "api-bindings"]
66
keywords = ["wasm", "webassembly", "runtime"]
@@ -15,18 +15,18 @@ edition = "2018"
1515
crate-type = ["cdylib", "rlib", "staticlib"]
1616

1717
[dependencies]
18-
wasmer = { version = "2.0.0-rc2", path = "../api", default-features = false }
19-
wasmer-compiler-cranelift = { version = "2.0.0-rc2", path = "../compiler-cranelift", optional = true }
20-
wasmer-compiler-singlepass = { version = "2.0.0-rc2", path = "../compiler-singlepass", optional = true }
21-
wasmer-compiler-llvm = { version = "2.0.0-rc2", path = "../compiler-llvm", optional = true }
22-
wasmer-emscripten = { version = "2.0.0-rc2", path = "../emscripten", optional = true }
23-
wasmer-engine = { version = "2.0.0-rc2", path = "../engine" }
24-
wasmer-engine-universal = { version = "2.0.0-rc2", path = "../engine-universal", optional = true }
25-
wasmer-engine-dylib = { version = "2.0.0-rc2", path = "../engine-dylib", optional = true }
26-
wasmer-engine-staticlib = { version = "2.0.0-rc2", path = "../engine-staticlib", optional = true }
27-
wasmer-middlewares = { version = "2.0.0-rc2", path = "../middlewares", optional = true }
28-
wasmer-wasi = { version = "2.0.0-rc2", path = "../wasi", optional = true }
29-
wasmer-types = { version = "2.0.0-rc2", path = "../types" }
18+
wasmer = { version = "2.0.0", path = "../api", default-features = false }
19+
wasmer-compiler-cranelift = { version = "2.0.0", path = "../compiler-cranelift", optional = true }
20+
wasmer-compiler-singlepass = { version = "2.0.0", path = "../compiler-singlepass", optional = true }
21+
wasmer-compiler-llvm = { version = "2.0.0", path = "../compiler-llvm", optional = true }
22+
wasmer-emscripten = { version = "2.0.0", path = "../emscripten", optional = true }
23+
wasmer-engine = { version = "2.0.0", path = "../engine" }
24+
wasmer-engine-universal = { version = "2.0.0", path = "../engine-universal", optional = true }
25+
wasmer-engine-dylib = { version = "2.0.0", path = "../engine-dylib", optional = true }
26+
wasmer-engine-staticlib = { version = "2.0.0", path = "../engine-staticlib", optional = true }
27+
wasmer-middlewares = { version = "2.0.0", path = "../middlewares", optional = true }
28+
wasmer-wasi = { version = "2.0.0", path = "../wasi", optional = true }
29+
wasmer-types = { version = "2.0.0", path = "../types" }
3030
enumset = "1.0"
3131
cfg-if = "1.0"
3232
lazy_static = "1.4"

lib/c-api/wasmer.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,11 @@
7575
#define WASMER_MIDDLEWARES_ENABLED
7676

7777
// This file corresponds to the following Wasmer version.
78-
#define WASMER_VERSION "2.0.0-rc2"
78+
#define WASMER_VERSION "2.0.0"
7979
#define WASMER_VERSION_MAJOR 2
8080
#define WASMER_VERSION_MINOR 0
8181
#define WASMER_VERSION_PATCH 0
82-
#define WASMER_VERSION_PRE "rc2"
82+
#define WASMER_VERSION_PRE ""
8383

8484
#endif // WASMER_H_PRELUDE
8585

lib/cache/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-cache"
3-
version = "2.0.0-rc2"
3+
version = "2.0.0"
44
description = "Cache system for Wasmer WebAssembly runtime"
55
categories = ["wasm", "caching"]
66
keywords = ["wasm", "webassembly", "cache"]
@@ -11,7 +11,7 @@ readme = "README.md"
1111
edition = "2018"
1212

1313
[dependencies]
14-
wasmer = { path = "../api", version = "2.0.0-rc2", default-features = false }
14+
wasmer = { path = "../api", version = "2.0.0", default-features = false }
1515
hex = "0.4"
1616
thiserror = "1"
1717
blake3 = "0.3"
@@ -20,9 +20,9 @@ blake3 = "0.3"
2020
criterion = "0.3"
2121
tempfile = "3"
2222
rand = "0.8.3"
23-
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "2.0.0-rc2" }
24-
wasmer-engine-universal = { path = "../engine-universal", version = "2.0.0-rc2" }
25-
wasmer-engine-dylib = { path = "../engine-dylib", version = "2.0.0-rc2" }
23+
wasmer-compiler-singlepass = { path = "../compiler-singlepass", version = "2.0.0" }
24+
wasmer-engine-universal = { path = "../engine-universal", version = "2.0.0" }
25+
wasmer-engine-dylib = { path = "../engine-dylib", version = "2.0.0" }
2626

2727
[[bench]]
2828
name = "bench_filesystem_cache"

0 commit comments

Comments
 (0)