Skip to content

Commit 864cf98

Browse files
committed
Update release notes, wasmtime 0.16, cranelift 0.63.
1 parent 363cd2d commit 864cf98

File tree

51 files changed

+263
-241
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+263
-241
lines changed

Cargo.lock

Lines changed: 82 additions & 86 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wasmtime-cli"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
authors = ["The Wasmtime Project Developers"]
55
description = "Command-line interface for Wasmtime"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -22,14 +22,14 @@ doc = false
2222

2323
[dependencies]
2424
# Enable all supported architectures by default.
25-
wasmtime = { path = "crates/api", version = "0.15.0", default-features = false }
26-
wasmtime-debug = { path = "crates/debug", version = "0.15.0" }
27-
wasmtime-environ = { path = "crates/environ", version = "0.15.0" }
28-
wasmtime-jit = { path = "crates/jit", version = "0.15.0" }
29-
wasmtime-obj = { path = "crates/obj", version = "0.15.0" }
30-
wasmtime-wast = { path = "crates/wast", version = "0.15.0" }
31-
wasmtime-wasi = { path = "crates/wasi", version = "0.15.0" }
32-
wasi-common = { path = "crates/wasi-common", version = "0.15.0" }
25+
wasmtime = { path = "crates/api", version = "0.16.0", default-features = false }
26+
wasmtime-debug = { path = "crates/debug", version = "0.16.0" }
27+
wasmtime-environ = { path = "crates/environ", version = "0.16.0" }
28+
wasmtime-jit = { path = "crates/jit", version = "0.16.0" }
29+
wasmtime-obj = { path = "crates/obj", version = "0.16.0" }
30+
wasmtime-wast = { path = "crates/wast", version = "0.16.0" }
31+
wasmtime-wasi = { path = "crates/wasi", version = "0.16.0" }
32+
wasi-common = { path = "crates/wasi-common", version = "0.16.0" }
3333
structopt = { version = "0.3.5", features = ["color", "suggestions"] }
3434
faerie = "0.15.0"
3535
anyhow = "1.0.19"

RELEASES.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,29 @@
22

33
--------------------------------------------------------------------------------
44

5-
## 0.16.0
5+
## 0.17.0
66

77
Unreleased
88

99
### Added
1010

11+
### Changed
12+
13+
### Fixed
14+
15+
--------------------------------------------------------------------------------
16+
17+
## 0.16.0
18+
19+
Released 2020-04-29.
20+
21+
### Added
22+
23+
* The `Instance` struct has new accessors, `get_func`, `get_table`,
24+
`get_memory`, and `get_global` for quickly looking up exported
25+
functions, tables, memories, and globals by name.
26+
[#1524](https://github.com/bytecodealliance/wasmtime/pull/1524)
27+
1128
* The C API has a number of new `wasmtime_*` functions which return error
1229
objects to get detailed error information when an API fails.
1330
[#1467](https://github.com/bytecodealliance/wasmtime/pull/1467)
@@ -22,12 +39,21 @@ Unreleased
2239
* APIs for looking up values in a `Linker` have been added.
2340
[#1480](https://github.com/bytecodealliance/wasmtime/pull/1480)
2441

42+
* Preliminary support for AArch64, also known as ARM64.
43+
[#1581](https://github.com/bytecodealliance/wasmtime/pull/1581)
44+
2545
[go-bindings]: https://github.com/bytecodealliance/wasmtime-go
2646

2747
### Changed
2848

49+
* `Instance::exports` now returns `Export` objects which contain
50+
the `name`s of the exports in addition to their `Extern` definitions,
51+
so it's no longer necessary to use `Module::exports` to obtain the
52+
export names.
53+
[#1524](https://github.com/bytecodealliance/wasmtime/pull/1524)
54+
2955
* The `Func::call` API has changed its error type from `Trap` to `anyhow::Error`
30-
to distinguish between wasm traps and runtiem violations (like the wrong
56+
to distinguish between wasm traps and runtime violations (like the wrong
3157
number of parameters).
3258
[#1467](https://github.com/bytecodealliance/wasmtime/pull/1467)
3359

cranelift/Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cranelift-tools"
33
authors = ["The Cranelift Project Developers"]
4-
version = "0.62.0"
4+
version = "0.63.0"
55
description = "Binaries for testing the Cranelift libraries"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://github.com/bytecodealliance/wasmtime/blob/master/cranelift/docs/index.md"
@@ -15,20 +15,20 @@ path = "src/clif-util.rs"
1515

1616
[dependencies]
1717
cfg-if = "0.1"
18-
cranelift-codegen = { path = "codegen", version = "0.62.0" }
19-
cranelift-entity = { path = "entity", version = "0.62.0" }
20-
cranelift-reader = { path = "reader", version = "0.62.0" }
21-
cranelift-frontend = { path = "frontend", version = "0.62.0" }
22-
cranelift-serde = { path = "serde", version = "0.62.0", optional = true }
23-
cranelift-wasm = { path = "wasm", version = "0.62.0", optional = true }
24-
cranelift-native = { path = "native", version = "0.62.0" }
25-
cranelift-filetests = { path = "filetests", version = "0.62.0" }
26-
cranelift-module = { path = "module", version = "0.62.0" }
27-
cranelift-faerie = { path = "faerie", version = "0.62.0" }
28-
cranelift-object = { path = "object", version = "0.62.0" }
29-
cranelift-simplejit = { path = "simplejit", version = "0.62.0" }
30-
cranelift-preopt = { path = "preopt", version = "0.62.0" }
31-
cranelift = { path = "umbrella", version = "0.62.0" }
18+
cranelift-codegen = { path = "codegen", version = "0.63.0" }
19+
cranelift-entity = { path = "entity", version = "0.63.0" }
20+
cranelift-reader = { path = "reader", version = "0.63.0" }
21+
cranelift-frontend = { path = "frontend", version = "0.63.0" }
22+
cranelift-serde = { path = "serde", version = "0.63.0", optional = true }
23+
cranelift-wasm = { path = "wasm", version = "0.63.0", optional = true }
24+
cranelift-native = { path = "native", version = "0.63.0" }
25+
cranelift-filetests = { path = "filetests", version = "0.63.0" }
26+
cranelift-module = { path = "module", version = "0.63.0" }
27+
cranelift-faerie = { path = "faerie", version = "0.63.0" }
28+
cranelift-object = { path = "object", version = "0.63.0" }
29+
cranelift-simplejit = { path = "simplejit", version = "0.63.0" }
30+
cranelift-preopt = { path = "preopt", version = "0.63.0" }
31+
cranelift = { path = "umbrella", version = "0.63.0" }
3232
filecheck = "0.5.0"
3333
clap = "2.32.0"
3434
serde = "1.0.8"

cranelift/bforest/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-bforest"
4-
version = "0.62.0"
4+
version = "0.63.0"
55
description = "A forest of B+-trees"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-bforest"
@@ -12,7 +12,7 @@ keywords = ["btree", "forest", "set", "map"]
1212
edition = "2018"
1313

1414
[dependencies]
15-
cranelift-entity = { path = "../entity", version = "0.62.0", default-features = false }
15+
cranelift-entity = { path = "../entity", version = "0.63.0", default-features = false }
1616

1717
[badges]
1818
maintenance = { status = "experimental" }

cranelift/codegen/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-codegen"
4-
version = "0.62.0"
4+
version = "0.63.0"
55
description = "Low-level code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-codegen"
@@ -13,9 +13,9 @@ build = "build.rs"
1313
edition = "2018"
1414

1515
[dependencies]
16-
cranelift-codegen-shared = { path = "./shared", version = "0.62.0" }
17-
cranelift-entity = { path = "../entity", version = "0.62.0" }
18-
cranelift-bforest = { path = "../bforest", version = "0.62.0" }
16+
cranelift-codegen-shared = { path = "./shared", version = "0.63.0" }
17+
cranelift-entity = { path = "../entity", version = "0.63.0" }
18+
cranelift-bforest = { path = "../bforest", version = "0.63.0" }
1919
hashbrown = { version = "0.7", optional = true }
2020
target-lexicon = "0.10"
2121
log = { version = "0.4.6", default-features = false }
@@ -31,7 +31,7 @@ regalloc = "0.0.21"
3131
# accomodated in `tests`.
3232

3333
[build-dependencies]
34-
cranelift-codegen-meta = { path = "meta", version = "0.62.0" }
34+
cranelift-codegen-meta = { path = "meta", version = "0.63.0" }
3535

3636
[features]
3737
default = ["std", "unwind"]

cranelift/codegen/meta/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "cranelift-codegen-meta"
33
authors = ["The Cranelift Project Developers"]
4-
version = "0.62.0"
4+
version = "0.63.0"
55
description = "Metaprogram for cranelift-codegen code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
repository = "https://github.com/bytecodealliance/wasmtime"
88
readme = "README.md"
99
edition = "2018"
1010

1111
[dependencies]
12-
cranelift-codegen-shared = { path = "../shared", version = "0.62.0" }
13-
cranelift-entity = { path = "../../entity", version = "0.62.0" }
12+
cranelift-codegen-shared = { path = "../shared", version = "0.63.0" }
13+
cranelift-entity = { path = "../../entity", version = "0.63.0" }
1414

1515
[badges]
1616
maintenance = { status = "experimental" }

cranelift/codegen/shared/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-codegen-shared"
4-
version = "0.62.0"
4+
version = "0.63.0"
55
description = "For code shared between cranelift-codegen-meta and cranelift-codegen"
66
license = "Apache-2.0 WITH LLVM-exception"
77
repository = "https://github.com/bytecodealliance/wasmtime"

cranelift/entity/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-entity"
4-
version = "0.62.0"
4+
version = "0.63.0"
55
description = "Data structures using entity references as mapping keys"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-entity"

cranelift/faerie/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-faerie"
3-
version = "0.62.0"
3+
version = "0.63.0"
44
authors = ["The Cranelift Project Developers"]
55
description = "Emit Cranelift output to native object files with Faerie"
66
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -10,8 +10,8 @@ readme = "README.md"
1010
edition = "2018"
1111

1212
[dependencies]
13-
cranelift-module = { path = "../module", version = "0.62.0" }
14-
cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false, features = ["std"] }
13+
cranelift-module = { path = "../module", version = "0.63.0" }
14+
cranelift-codegen = { path = "../codegen", version = "0.63.0", default-features = false, features = ["std"] }
1515
faerie = "0.15.0"
1616
goblin = "0.1.0"
1717
anyhow = "1.0"

0 commit comments

Comments
 (0)