Skip to content

Commit e9f07dc

Browse files
bors[bot]Mark McCaskey
and
Mark McCaskey
committed
Merge #352
352: update crate version numbers to 0.3.0 r=MarkMcCaskey a=MarkMcCaskey Co-authored-by: Mark McCaskey <mark@wasmer.io>
2 parents 97059a1 + 5dd6b06 commit e9f07dc

File tree

14 files changed

+88
-70
lines changed

14 files changed

+88
-70
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ All PRs to the Wasmer repository must add to this file.
55
Blocks of changes will separated by version increments.
66

77
## **[Unreleased]**
8+
- [#352](https://github.com/wasmerio/wasmer/pull/352) Bump version numbers to 0.3.0
89
- [#351](https://github.com/wasmerio/wasmer/pull/351) Add hidden option to specify wasm program name (can be used to improve error messages)
910
- [#350](https://github.com/wasmerio/wasmer/pull/350) Enforce that CHANGELOG.md is updated through CI.
1011
- [#349](https://github.com/wasmerio/wasmer/pull/349) Add [CHANGELOG.md](https://github.com/wasmerio/wasmer/blob/master/CHANGELOG.md).

Cargo.lock

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

lib/clif-backend/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "wasmer-clif-backend"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "Wasmer runtime Cranelift compiler backend"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
77
repository = "https://github.com/wasmerio/wasmer"
88
edition = "2018"
99

1010
[dependencies]
11-
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.1" }
11+
wasmer-runtime-core = { path = "../runtime-core", version = "0.3.0" }
1212
cranelift-native = "0.30.0"
1313
cranelift-codegen = "0.30.0"
1414
cranelift-entity = "0.30.0"
@@ -33,7 +33,7 @@ version = "0.0.7"
3333

3434
[target.'cfg(windows)'.dependencies]
3535
winapi = { version = "0.3", features = ["errhandlingapi", "minwindef", "minwinbase", "winnt"] }
36-
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.2.0" }
36+
wasmer-win-exception-handler = { path = "../win-exception-handler", version = "0.3.0" }
3737

3838
[features]
3939
debug = ["wasmer-runtime-core/debug"]

lib/emscripten/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-emscripten"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
description = "Wasmer runtime emscripten implementation library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -9,14 +9,14 @@ edition = "2018"
99
build = "build/mod.rs"
1010

1111
[dependencies]
12-
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.1" }
12+
wasmer-runtime-core = { path = "../runtime-core", version = "0.3.0" }
1313
lazy_static = "1.2.0"
1414
libc = "0.2.49"
1515
byteorder = "1"
1616
time = "0.1.41"
17-
wasmer-clif-backend = { path = "../clif-backend", version = "0.2.0" }
18-
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.1.0", optional = true }
19-
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.1.0", optional = true }
17+
wasmer-clif-backend = { path = "../clif-backend", version = "0.3.0" }
18+
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.3.0", optional = true }
19+
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.3.0", optional = true }
2020

2121
[target.'cfg(windows)'.dependencies]
2222
rand = "0.6"

lib/llvm-backend/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "wasmer-llvm-backend"
3-
version = "0.1.0"
3+
version = "0.3.0"
44
authors = ["Lachlan Sneff <lachlan.sneff@gmail.com>"]
55
edition = "2018"
66

77
[dependencies]
8-
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.1" }
8+
wasmer-runtime-core = { path = "../runtime-core", version = "0.3.0" }
99
inkwell = { git = "https://github.com/wasmerio/inkwell", branch = "llvm7-0" }
1010
wasmparser = "0.28.0"
1111
hashbrown = "0.1.8"
@@ -27,4 +27,4 @@ wabt = "0.7.4"
2727

2828
[features]
2929
debug = ["wasmer-runtime-core/debug"]
30-
disasm = ["capstone"]
30+
disasm = ["capstone"]

lib/runtime-abi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-runtime-abi"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
description = "Wasmer runtime core library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]

lib/runtime-c-api/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-runtime-c-api"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
description = "Wasmer C API library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -16,15 +16,15 @@ libc = "0.2"
1616

1717
[dependencies.wasmer-runtime]
1818
path = "../runtime"
19-
version = "0.2.1"
19+
version = "0.3.0"
2020

2121
[dependencies.wasmer-runtime-core]
2222
path = "../runtime-core"
23-
version = "0.2.1"
23+
version = "0.3.0"
2424

2525
[features]
2626
debug = ["wasmer-runtime/debug"]
2727
llvm = ["wasmer-runtime/llvm"]
2828

2929
[build-dependencies]
30-
cbindgen = "0.8"
30+
cbindgen = "0.8"

lib/runtime-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-runtime-core"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
description = "Wasmer runtime core library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]

lib/runtime/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-runtime"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
description = "Wasmer runtime library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -15,11 +15,11 @@ memmap = "0.7.0"
1515

1616
[dependencies.wasmer-runtime-core]
1717
path = "../runtime-core"
18-
version = "0.2.1"
18+
version = "0.3.0"
1919

2020
[dependencies.wasmer-clif-backend]
2121
path = "../clif-backend"
22-
version = "0.2.0"
22+
version = "0.3.0"
2323
optional = true
2424

2525
[dev-dependencies]

lib/singlepass-backend/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-singlepass-backend"
3-
version = "0.1.0"
3+
version = "0.3.0"
44
repository = "https://github.com/wasmerio/wasmer"
55
description = "Wasmer runtime single pass compiler backend"
66
license = "MIT"

lib/spectests/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmer-spectests"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "Wasmer spectests library"
55
license = "MIT"
66
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
@@ -9,10 +9,10 @@ edition = "2018"
99
build = "build/mod.rs"
1010

1111
[dependencies]
12-
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.0" }
13-
wasmer-clif-backend = { path = "../clif-backend", version = "0.2.0" }
14-
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.1.0", optional = true }
15-
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.1.0", optional = true }
12+
wasmer-runtime-core = { path = "../runtime-core", version = "0.3.0" }
13+
wasmer-clif-backend = { path = "../clif-backend", version = "0.3.0" }
14+
wasmer-llvm-backend = { path = "../llvm-backend", version = "0.3.0", optional = true }
15+
wasmer-singlepass-backend = { path = "../singlepass-backend", version = "0.3.0", optional = true }
1616

1717
[build-dependencies]
1818
wabt = "0.7.2"

lib/wasi/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "wasmer-wasi"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
license = "MIT"
55
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
66
repository = "https://github.com/wasmerio/wasmer"
77
edition = "2018"
88

99
[dependencies]
10-
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.1" }
10+
wasmer-runtime-core = { path = "../runtime-core", version = "0.3.0" }
1111
libc = "0.2.50"
1212
rand = "0.6.5"
1313
# wasmer-runtime-abi = { path = "../runtime-abi" }

0 commit comments

Comments
 (0)