Skip to content

Commit 63d5b91

Browse files
authored
Wasmtime 0.19.0 and Cranelift 0.66.0 (#2027)
This commit updates Wasmtime's version to 0.19.0, Cranelift's version to 0.66.0, and updates the release notes as well.
1 parent bab337f commit 63d5b91

File tree

55 files changed

+390
-313
lines changed

Some content is hidden

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

55 files changed

+390
-313
lines changed

Cargo.lock

Lines changed: 150 additions & 138 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.18.0"
3+
version = "0.19.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/wasmtime", version = "0.18.0", default-features = false }
26-
wasmtime-debug = { path = "crates/debug", version = "0.18.0" }
27-
wasmtime-environ = { path = "crates/environ", version = "0.18.0" }
28-
wasmtime-jit = { path = "crates/jit", version = "0.18.0" }
29-
wasmtime-obj = { path = "crates/obj", version = "0.18.0" }
30-
wasmtime-wast = { path = "crates/wast", version = "0.18.0" }
31-
wasmtime-wasi = { path = "crates/wasi", version = "0.18.0" }
32-
wasi-common = { path = "crates/wasi-common", version = "0.18.0" }
25+
wasmtime = { path = "crates/wasmtime", version = "0.19.0", default-features = false }
26+
wasmtime-debug = { path = "crates/debug", version = "0.19.0" }
27+
wasmtime-environ = { path = "crates/environ", version = "0.19.0" }
28+
wasmtime-jit = { path = "crates/jit", version = "0.19.0" }
29+
wasmtime-obj = { path = "crates/obj", version = "0.19.0" }
30+
wasmtime-wast = { path = "crates/wast", version = "0.19.0" }
31+
wasmtime-wasi = { path = "crates/wasi", version = "0.19.0" }
32+
wasi-common = { path = "crates/wasi-common", version = "0.19.0" }
3333
structopt = { version = "0.3.5", features = ["color", "suggestions"] }
3434
object = { version = "0.20", default-features = false, features = ["write"] }
3535
anyhow = "1.0.19"

RELEASES.md

Lines changed: 66 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,79 @@
44

55
## 0.19.0
66

7-
Unreleased.
7+
Released 2020-07-14.
88

99
### Added
1010

11+
* The [WebAssembly reference-types proposal][reftypes] is now supported in
12+
Wasmtime and the C API.
13+
[#1832](https://github.com/bytecodealliance/wasmtime/pull/1832),
14+
[#1882](https://github.com/bytecodealliance/wasmtime/pull/1882),
15+
[#1894](https://github.com/bytecodealliance/wasmtime/pull/1894),
16+
[#1901](https://github.com/bytecodealliance/wasmtime/pull/1901),
17+
[#1923](https://github.com/bytecodealliance/wasmtime/pull/1923),
18+
[#1969](https://github.com/bytecodealliance/wasmtime/pull/1969),
19+
[#1973](https://github.com/bytecodealliance/wasmtime/pull/1973),
20+
[#1982](https://github.com/bytecodealliance/wasmtime/pull/1982),
21+
[#1984](https://github.com/bytecodealliance/wasmtime/pull/1984),
22+
[#1991](https://github.com/bytecodealliance/wasmtime/pull/1991),
23+
[#1996](https://github.com/bytecodealliance/wasmtime/pull/1996)
24+
25+
* The [WebAssembly simd proposal's][simd] spec tests now pass in Wasmtime.
26+
[#1765](https://github.com/bytecodealliance/wasmtime/pull/1765),
27+
[#1876](https://github.com/bytecodealliance/wasmtime/pull/1876),
28+
[#1941](https://github.com/bytecodealliance/wasmtime/pull/1941),
29+
[#1957](https://github.com/bytecodealliance/wasmtime/pull/1957),
30+
[#1990](https://github.com/bytecodealliance/wasmtime/pull/1990),
31+
[#1994](https://github.com/bytecodealliance/wasmtime/pull/1994)
32+
33+
* Wasmtime can now be compiled without the usage of threads for parallel
34+
compilation, although this is still enabled by default.
35+
[#1903](https://github.com/bytecodealliance/wasmtime/pull/1903)
36+
37+
* The C API is [now
38+
documented](https://bytecodealliance.github.io/wasmtime/c-api/).
39+
[#1928](https://github.com/bytecodealliance/wasmtime/pull/1928),
40+
[#1959](https://github.com/bytecodealliance/wasmtime/pull/1959),
41+
[#1968](https://github.com/bytecodealliance/wasmtime/pull/1968)
42+
43+
* A `wasmtime_linker_get_one_by_name` function was added to the C API.
44+
[#1897](https://github.com/bytecodealliance/wasmtime/pull/1897)
45+
46+
* A `wasmtime_trap_exit_status` function was added to the C API.
47+
[#1912](https://github.com/bytecodealliance/wasmtime/pull/1912)
48+
49+
* Compilation for the `aarch64-linux-android` target should now work, although
50+
keep in mind this platform is not fully tested still.
51+
[#2002](https://github.com/bytecodealliance/wasmtime/pull/2002)
52+
53+
[reftypes]: https://github.com/WebAssembly/reference-types
54+
55+
### Fixed
56+
57+
* Runtime warnings when using Wasmtime on musl have been fixed.
58+
[#1914](https://github.com/bytecodealliance/wasmtime/pull/1914)
59+
60+
* A bug affecting Windows unwind information with functions that have spilled
61+
floating point registers has been fixed.
62+
[#1983](https://github.com/bytecodealliance/wasmtime/pull/1983)
63+
1164
### Changed
1265

66+
* Wasmtime's default branch and development now happens on the `main` branch
67+
instead of `master`.
68+
[#1924](https://github.com/bytecodealliance/wasmtime/pull/1924)
69+
1370
### Removed
1471

72+
* The "host info" support in the C API has been removed since it was never fully
73+
or correctly implemented.
74+
[#1922](https://github.com/bytecodealliance/wasmtime/pull/1922)
75+
76+
* Support for the `*_same` functions in the C API has been removed in the same
77+
vein as the host info APIs.
78+
[#1926](https://github.com/bytecodealliance/wasmtime/pull/1926)
79+
1580
--------------------------------------------------------------------------------
1681

1782
## 0.18.0

cranelift/Cargo.toml

Lines changed: 16 additions & 16 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.65.0"
4+
version = "0.66.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/main/cranelift/docs/index.md"
@@ -15,21 +15,21 @@ path = "src/clif-util.rs"
1515

1616
[dependencies]
1717
cfg-if = "0.1"
18-
cranelift-codegen = { path = "codegen", version = "0.65.0" }
19-
cranelift-entity = { path = "entity", version = "0.65.0" }
20-
cranelift-interpreter = { path = "interpreter", version = "0.65.0" }
21-
cranelift-reader = { path = "reader", version = "0.65.0" }
22-
cranelift-frontend = { path = "frontend", version = "0.65.0" }
23-
cranelift-serde = { path = "serde", version = "0.65.0", optional = true }
24-
cranelift-wasm = { path = "wasm", version = "0.65.0", optional = true }
25-
cranelift-native = { path = "native", version = "0.65.0" }
26-
cranelift-filetests = { path = "filetests", version = "0.65.0" }
27-
cranelift-module = { path = "module", version = "0.65.0" }
28-
cranelift-faerie = { path = "faerie", version = "0.65.0" }
29-
cranelift-object = { path = "object", version = "0.65.0" }
30-
cranelift-simplejit = { path = "simplejit", version = "0.65.0" }
31-
cranelift-preopt = { path = "preopt", version = "0.65.0" }
32-
cranelift = { path = "umbrella", version = "0.65.0" }
18+
cranelift-codegen = { path = "codegen", version = "0.66.0" }
19+
cranelift-entity = { path = "entity", version = "0.66.0" }
20+
cranelift-interpreter = { path = "interpreter", version = "0.66.0" }
21+
cranelift-reader = { path = "reader", version = "0.66.0" }
22+
cranelift-frontend = { path = "frontend", version = "0.66.0" }
23+
cranelift-serde = { path = "serde", version = "0.66.0", optional = true }
24+
cranelift-wasm = { path = "wasm", version = "0.66.0", optional = true }
25+
cranelift-native = { path = "native", version = "0.66.0" }
26+
cranelift-filetests = { path = "filetests", version = "0.66.0" }
27+
cranelift-module = { path = "module", version = "0.66.0" }
28+
cranelift-faerie = { path = "faerie", version = "0.66.0" }
29+
cranelift-object = { path = "object", version = "0.66.0" }
30+
cranelift-simplejit = { path = "simplejit", version = "0.66.0" }
31+
cranelift-preopt = { path = "preopt", version = "0.66.0" }
32+
cranelift = { path = "umbrella", version = "0.66.0" }
3333
filecheck = "0.5.0"
3434
clap = "2.32.0"
3535
log = "0.4.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.65.0"
4+
version = "0.66.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.65.0", default-features = false }
15+
cranelift-entity = { path = "../entity", version = "0.66.0", default-features = false }
1616

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

cranelift/codegen/Cargo.toml

Lines changed: 6 additions & 6 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.65.0"
4+
version = "0.66.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.65.0" }
17-
cranelift-entity = { path = "../entity", version = "0.65.0" }
18-
cranelift-bforest = { path = "../bforest", version = "0.65.0" }
16+
cranelift-codegen-shared = { path = "./shared", version = "0.66.0" }
17+
cranelift-entity = { path = "../entity", version = "0.66.0" }
18+
cranelift-bforest = { path = "../bforest", version = "0.66.0" }
1919
hashbrown = { version = "0.7", optional = true }
2020
target-lexicon = "0.10"
2121
log = { version = "0.4.6", default-features = false }
@@ -33,8 +33,8 @@ regalloc = { version = "0.0.27" }
3333
# accomodated in `tests`.
3434

3535
[build-dependencies]
36-
cranelift-codegen-meta = { path = "meta", version = "0.65.0" }
37-
peepmatic = { path = "../peepmatic", optional = true, version = "0.65.0" }
36+
cranelift-codegen-meta = { path = "meta", version = "0.66.0" }
37+
peepmatic = { path = "../peepmatic", optional = true, version = "0.66.0" }
3838

3939
[features]
4040
default = ["std", "unwind"]

cranelift/codegen/meta/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cranelift-codegen-meta"
33
authors = ["The Cranelift Project Developers"]
4-
version = "0.65.0"
4+
version = "0.66.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"
@@ -12,8 +12,8 @@ edition = "2018"
1212
rustdoc-args = [ "--document-private-items" ]
1313

1414
[dependencies]
15-
cranelift-codegen-shared = { path = "../shared", version = "0.65.0" }
16-
cranelift-entity = { path = "../../entity", version = "0.65.0" }
15+
cranelift-codegen-shared = { path = "../shared", version = "0.66.0" }
16+
cranelift-entity = { path = "../../entity", version = "0.66.0" }
1717

1818
[badges]
1919
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.65.0"
4+
version = "0.66.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.65.0"
4+
version = "0.66.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.65.0"
3+
version = "0.66.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.65.0" }
14-
cranelift-codegen = { path = "../codegen", version = "0.65.0", default-features = false, features = ["std"] }
13+
cranelift-module = { path = "../module", version = "0.66.0" }
14+
cranelift-codegen = { path = "../codegen", version = "0.66.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)