Skip to content

Commit 864cf98

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

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

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

Cargo.toml

+9-9
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

+28-2
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

+15-15
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

+2-2
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

+5-5
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

+3-3
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

+1-1
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

+1-1
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

+3-3
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"

cranelift/filetests/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cranelift-filetests"
33
authors = ["The Cranelift Project Developers"]
4-
version = "0.62.0"
4+
version = "0.63.0"
55
description = "Test driver and implementations of the filetest commands"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-filetests"
@@ -10,10 +10,10 @@ publish = false
1010
edition = "2018"
1111

1212
[dependencies]
13-
cranelift-codegen = { path = "../codegen", version = "0.62.0", features = ["testing_hooks"] }
14-
cranelift-native = { path = "../native", version = "0.62.0" }
15-
cranelift-reader = { path = "../reader", version = "0.62.0" }
16-
cranelift-preopt = { path = "../preopt", version = "0.62.0" }
13+
cranelift-codegen = { path = "../codegen", version = "0.63.0", features = ["testing_hooks"] }
14+
cranelift-native = { path = "../native", version = "0.63.0" }
15+
cranelift-reader = { path = "../reader", version = "0.63.0" }
16+
cranelift-preopt = { path = "../preopt", version = "0.63.0" }
1717
file-per-thread-logger = "0.1.2"
1818
filecheck = "0.5.0"
1919
gimli = { version = "0.20.0", default-features = false, features = ["read"] }

cranelift/frontend/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-frontend"
4-
version = "0.62.0"
4+
version = "0.63.0"
55
description = "Cranelift IR builder helper"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-frontend"
@@ -11,7 +11,7 @@ readme = "README.md"
1111
edition = "2018"
1212

1313
[dependencies]
14-
cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false }
14+
cranelift-codegen = { path = "../codegen", version = "0.63.0", default-features = false }
1515
target-lexicon = "0.10"
1616
log = { version = "0.4.6", default-features = false }
1717
hashbrown = { version = "0.7", optional = true }

cranelift/module/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-module"
3-
version = "0.62.0"
3+
version = "0.63.0"
44
authors = ["The Cranelift Project Developers"]
55
description = "Support for linking functions and data with Cranelift"
66
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -11,8 +11,8 @@ readme = "README.md"
1111
edition = "2018"
1212

1313
[dependencies]
14-
cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false }
15-
cranelift-entity = { path = "../entity", version = "0.62.0" }
14+
cranelift-codegen = { path = "../codegen", version = "0.63.0", default-features = false }
15+
cranelift-entity = { path = "../entity", version = "0.63.0" }
1616
hashbrown = { version = "0.6", optional = true }
1717
log = { version = "0.4.6", default-features = false }
1818
thiserror = "1.0.4"

cranelift/native/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-native"
3-
version = "0.62.0"
3+
version = "0.63.0"
44
authors = ["The Cranelift Project Developers"]
55
description = "Support for targeting the host with Cranelift"
66
documentation = "https://docs.rs/cranelift-native"
@@ -11,7 +11,7 @@ readme = "README.md"
1111
edition = "2018"
1212

1313
[dependencies]
14-
cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false }
14+
cranelift-codegen = { path = "../codegen", version = "0.63.0", default-features = false }
1515
target-lexicon = "0.10"
1616

1717
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]

cranelift/object/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-object"
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 `object`"
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
object = { version = "0.18", default-features = false, features = ["write"] }
1616
target-lexicon = "0.10"
1717

cranelift/preopt/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-preopt"
4-
version = "0.62.0"
4+
version = "0.63.0"
55
description = "Support for optimizations in Cranelift"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-preopt"
@@ -12,8 +12,8 @@ keywords = ["optimize", "compile", "compiler", "jit"]
1212
edition = "2018"
1313

1414
[dependencies]
15-
cranelift-codegen = { path = "../codegen", version = "0.62.0", default-features = false }
16-
cranelift-entity = { path = "../entity", version = "0.62.0" }
15+
cranelift-codegen = { path = "../codegen", version = "0.63.0", default-features = false }
16+
cranelift-entity = { path = "../entity", version = "0.63.0" }
1717
# This is commented out because it doesn't build on Rust 1.25.0, which
1818
# cranelift currently supports.
1919
# rustc_apfloat = { version = "0.1.2", default-features = false }

cranelift/reader/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift-reader"
4-
version = "0.62.0"
4+
version = "0.63.0"
55
description = "Cranelift textual IR reader"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://docs.rs/cranelift-reader"
@@ -10,7 +10,7 @@ readme = "README.md"
1010
edition = "2018"
1111

1212
[dependencies]
13-
cranelift-codegen = { path = "../codegen", version = "0.62.0" }
13+
cranelift-codegen = { path = "../codegen", version = "0.63.0" }
1414
target-lexicon = "0.10"
1515

1616
[badges]

cranelift/serde/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-serde"
3-
version = "0.62.0"
3+
version = "0.63.0"
44
authors = ["The Cranelift Project Developers"]
55
description = "Serializer/Deserializer for Cranelift IR"
66
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -18,8 +18,8 @@ clap = "2.32.0"
1818
serde = "1.0.8"
1919
serde_derive = "1.0.75"
2020
serde_json = "1.0.26"
21-
cranelift-codegen = { path = "../codegen", version = "0.62.0" }
22-
cranelift-reader = { path = "../reader", version = "0.62.0" }
21+
cranelift-codegen = { path = "../codegen", version = "0.63.0" }
22+
cranelift-reader = { path = "../reader", version = "0.63.0" }
2323

2424
[badges]
2525
maintenance = { status = "experimental" }

0 commit comments

Comments
 (0)