Skip to content

Commit ab19584

Browse files
authored
Bump to 0.21.0 (#2359)
1 parent a277cf5 commit ab19584

File tree

53 files changed

+272
-232
lines changed

Some content is hidden

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

53 files changed

+272
-232
lines changed

Cargo.lock

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

Cargo.toml

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

2323
[dependencies]
2424
# Enable all supported architectures by default.
25-
wasmtime = { path = "crates/wasmtime", version = "0.20.0", default-features = false, features = ['cache'] }
26-
wasmtime-cache = { path = "crates/cache", version = "0.20.0" }
27-
wasmtime-debug = { path = "crates/debug", version = "0.20.0" }
28-
wasmtime-environ = { path = "crates/environ", version = "0.20.0" }
29-
wasmtime-jit = { path = "crates/jit", version = "0.20.0" }
30-
wasmtime-obj = { path = "crates/obj", version = "0.20.0" }
31-
wasmtime-wast = { path = "crates/wast", version = "0.20.0" }
32-
wasmtime-wasi = { path = "crates/wasi", version = "0.20.0" }
33-
wasi-common = { path = "crates/wasi-common", version = "0.20.0" }
25+
wasmtime = { path = "crates/wasmtime", version = "0.21.0", default-features = false, features = ['cache'] }
26+
wasmtime-cache = { path = "crates/cache", version = "0.21.0" }
27+
wasmtime-debug = { path = "crates/debug", version = "0.21.0" }
28+
wasmtime-environ = { path = "crates/environ", version = "0.21.0" }
29+
wasmtime-jit = { path = "crates/jit", version = "0.21.0" }
30+
wasmtime-obj = { path = "crates/obj", version = "0.21.0" }
31+
wasmtime-wast = { path = "crates/wast", version = "0.21.0" }
32+
wasmtime-wasi = { path = "crates/wasi", version = "0.21.0" }
33+
wasi-common = { path = "crates/wasi-common", version = "0.21.0" }
3434
structopt = { version = "0.3.5", features = ["color", "suggestions"] }
3535
object = { version = "0.21.1", default-features = false, features = ["write"] }
3636
anyhow = "1.0.19"

RELEASES.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,46 @@
22

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

5+
## 0.21.0
6+
7+
Released 2020-11-05.
8+
9+
### Added
10+
11+
* Experimental support for the multi-memory proposal was added.
12+
[#2263](https://github.com/bytecodealliance/wasmtime/pull/2263)
13+
14+
* The `Trap::trap_code` API enables learning what kind of trap was raised.
15+
[#2309](https://github.com/bytecodealliance/wasmtime/pull/2309)
16+
17+
### Changed
18+
19+
* WebAssembly module validation is now parallelized.
20+
[#2059](https://github.com/bytecodealliance/wasmtime/pull/2059)
21+
22+
* Documentation is now available at docs.wasmtime.dev.
23+
[#2317](https://github.com/bytecodealliance/wasmtime/pull/2317)
24+
25+
* Windows now compiles like other platforms with a huge guard page instead of
26+
having its own custom limit which made modules compile and run more slowly.
27+
[#2326](https://github.com/bytecodealliance/wasmtime/pull/2326)
28+
29+
* The size of the cache entry for serialized modules has been greatly reduced.
30+
[#2321](https://github.com/bytecodealliance/wasmtime/pull/2321)
31+
[#2322](https://github.com/bytecodealliance/wasmtime/pull/2322)
32+
[#2324](https://github.com/bytecodealliance/wasmtime/pull/2324)
33+
[#2325](https://github.com/bytecodealliance/wasmtime/pull/2325)
34+
35+
* The `FuncType` API constructor and accessors are now iterator-based.
36+
[#2365](https://github.com/bytecodealliance/wasmtime/pull/2365)
37+
38+
### Fixed
39+
40+
* A panic in compiling reference-types-using modules has been fixed.
41+
[#2350](https://github.com/bytecodealliance/wasmtime/pull/2350)
42+
43+
--------------------------------------------------------------------------------
44+
545
## 0.20.0
646

747
Released 2020-09-23.

cranelift/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,27 @@ path = "src/clif-util.rs"
1515

1616
[dependencies]
1717
cfg-if = "1.0"
18-
cranelift-codegen = { path = "codegen", version = "0.67.0" }
19-
cranelift-entity = { path = "entity", version = "0.67.0" }
20-
cranelift-interpreter = { path = "interpreter", version = "0.67.0" }
21-
cranelift-reader = { path = "reader", version = "0.67.0" }
22-
cranelift-frontend = { path = "frontend", version = "0.67.0" }
23-
cranelift-serde = { path = "serde", version = "0.67.0", optional = true }
24-
cranelift-wasm = { path = "wasm", version = "0.67.0", optional = true }
25-
cranelift-native = { path = "native", version = "0.67.0" }
18+
cranelift-codegen = { path = "codegen", version = "0.68.0" }
19+
cranelift-entity = { path = "entity", version = "0.68.0" }
20+
cranelift-interpreter = { path = "interpreter", version = "0.68.0" }
21+
cranelift-reader = { path = "reader", version = "0.68.0" }
22+
cranelift-frontend = { path = "frontend", version = "0.68.0" }
23+
cranelift-serde = { path = "serde", version = "0.68.0", optional = true }
24+
cranelift-wasm = { path = "wasm", version = "0.68.0", optional = true }
25+
cranelift-native = { path = "native", version = "0.68.0" }
2626
cranelift-filetests = { path = "filetests", version = "0.66.0" }
27-
cranelift-module = { path = "module", version = "0.67.0" }
28-
cranelift-object = { path = "object", version = "0.67.0" }
29-
cranelift-simplejit = { path = "simplejit", version = "0.67.0" }
30-
cranelift-preopt = { path = "preopt", version = "0.67.0" }
31-
cranelift = { path = "umbrella", version = "0.67.0" }
27+
cranelift-module = { path = "module", version = "0.68.0" }
28+
cranelift-object = { path = "object", version = "0.68.0" }
29+
cranelift-simplejit = { path = "simplejit", version = "0.68.0" }
30+
cranelift-preopt = { path = "preopt", version = "0.68.0" }
31+
cranelift = { path = "umbrella", version = "0.68.0" }
3232
filecheck = "0.5.0"
3333
log = "0.4.8"
3434
term = "0.6.1"
3535
capstone = { version = "0.6.0", optional = true }
3636
wat = { version = "1.0.18", optional = true }
3737
target-lexicon = { version = "0.11", features = ["std"] }
38-
peepmatic-souper = { path = "./peepmatic/crates/souper", version = "0.67.0", optional = true }
38+
peepmatic-souper = { path = "./peepmatic/crates/souper", version = "0.68.0", optional = true }
3939
pretty_env_logger = "0.4.0"
4040
rayon = { version = "1", optional = true }
4141
file-per-thread-logger = "0.1.2"

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.67.0"
4+
version = "0.68.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.67.0", default-features = false }
15+
cranelift-entity = { path = "../entity", version = "0.68.0", default-features = false }
1616

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

cranelift/codegen/Cargo.toml

Lines changed: 8 additions & 8 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.67.0"
4+
version = "0.68.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.67.0" }
17-
cranelift-entity = { path = "../entity", version = "0.67.0" }
18-
cranelift-bforest = { path = "../bforest", version = "0.67.0" }
16+
cranelift-codegen-shared = { path = "./shared", version = "0.68.0" }
17+
cranelift-entity = { path = "../entity", version = "0.68.0" }
18+
cranelift-bforest = { path = "../bforest", version = "0.68.0" }
1919
hashbrown = { version = "0.9.1", optional = true }
2020
target-lexicon = "0.11"
2121
log = { version = "0.4.6", default-features = false }
@@ -25,9 +25,9 @@ gimli = { version = "0.22.0", default-features = false, features = ["write"], op
2525
smallvec = { version = "1.0.0" }
2626
thiserror = "1.0.4"
2727
byteorder = { version = "1.3.2", default-features = false }
28-
peepmatic = { path = "../peepmatic", optional = true, version = "0.67.0" }
29-
peepmatic-traits = { path = "../peepmatic/crates/traits", optional = true, version = "0.67.0" }
30-
peepmatic-runtime = { path = "../peepmatic/crates/runtime", optional = true, version = "0.67.0" }
28+
peepmatic = { path = "../peepmatic", optional = true, version = "0.68.0" }
29+
peepmatic-traits = { path = "../peepmatic/crates/traits", optional = true, version = "0.68.0" }
30+
peepmatic-runtime = { path = "../peepmatic/crates/runtime", optional = true, version = "0.68.0" }
3131
regalloc = { version = "0.0.31" }
3232
souper-ir = { version = "1", optional = true }
3333
wast = { version = "26.0.1", optional = true }
@@ -37,7 +37,7 @@ wast = { version = "26.0.1", optional = true }
3737
# accomodated in `tests`.
3838

3939
[build-dependencies]
40-
cranelift-codegen-meta = { path = "meta", version = "0.67.0" }
40+
cranelift-codegen-meta = { path = "meta", version = "0.68.0" }
4141

4242
[features]
4343
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.67.0"
4+
version = "0.68.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.67.0" }
16-
cranelift-entity = { path = "../../entity", version = "0.67.0" }
15+
cranelift-codegen-shared = { path = "../shared", version = "0.68.0" }
16+
cranelift-entity = { path = "../../entity", version = "0.68.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.67.0"
4+
version = "0.68.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.67.0"
4+
version = "0.68.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/filetests/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ publish = false
1010
edition = "2018"
1111

1212
[dependencies]
13-
cranelift-codegen = { path = "../codegen", version = "0.67.0", features = ["testing_hooks"] }
14-
cranelift-frontend = { path = "../frontend", version = "0.67.0" }
15-
cranelift-interpreter = { path = "../interpreter", version = "0.67.0" }
16-
cranelift-native = { path = "../native", version = "0.67.0" }
17-
cranelift-reader = { path = "../reader", version = "0.67.0" }
18-
cranelift-preopt = { path = "../preopt", version = "0.67.0" }
13+
cranelift-codegen = { path = "../codegen", version = "0.68.0", features = ["testing_hooks"] }
14+
cranelift-frontend = { path = "../frontend", version = "0.68.0" }
15+
cranelift-interpreter = { path = "../interpreter", version = "0.68.0" }
16+
cranelift-native = { path = "../native", version = "0.68.0" }
17+
cranelift-reader = { path = "../reader", version = "0.68.0" }
18+
cranelift-preopt = { path = "../preopt", version = "0.68.0" }
1919
byteorder = { version = "1.3.2", default-features = false }
2020
file-per-thread-logger = "0.1.2"
2121
filecheck = "0.5.0"

cranelift/frontend/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-frontend"
4-
version = "0.67.0"
4+
version = "0.68.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.67.0", default-features = false }
14+
cranelift-codegen = { path = "../codegen", version = "0.68.0", default-features = false }
1515
target-lexicon = "0.11"
1616
log = { version = "0.4.6", default-features = false }
1717
hashbrown = { version = "0.9.1", optional = true }

cranelift/interpreter/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-interpreter"
3-
version = "0.67.0"
3+
version = "0.68.0"
44
authors = ["The Cranelift Project Developers"]
55
description = "Interpret Cranelift IR"
66
repository = "https://github.com/bytecodealliance/wasmtime"
@@ -11,15 +11,15 @@ readme = "README.md"
1111
edition = "2018"
1212

1313
[dependencies]
14-
cranelift-codegen = { path = "../codegen", version = "0.67.0", features = ["all-arch"] }
15-
cranelift-entity = { path = "../entity", version = "0.67.0" }
16-
cranelift-reader = { path = "../reader", version = "0.67.0" }
14+
cranelift-codegen = { path = "../codegen", version = "0.68.0", features = ["all-arch"] }
15+
cranelift-entity = { path = "../entity", version = "0.68.0" }
16+
cranelift-reader = { path = "../reader", version = "0.68.0" }
1717
log = { version = "0.4.8", default-features = false }
1818
smallvec = "1.4.2"
1919
thiserror = "1.0.15"
2020

2121
[dev-dependencies]
22-
cranelift-frontend = { path = "../frontend", version = "0.67.0" }
22+
cranelift-frontend = { path = "../frontend", version = "0.68.0" }
2323

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

cranelift/module/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-module"
3-
version = "0.67.0"
3+
version = "0.68.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.67.0", default-features = false }
15-
cranelift-entity = { path = "../entity", version = "0.67.0" }
14+
cranelift-codegen = { path = "../codegen", version = "0.68.0", default-features = false }
15+
cranelift-entity = { path = "../entity", version = "0.68.0" }
1616
hashbrown = { version = "0.9.1", optional = true }
1717
log = { version = "0.4.6", default-features = false }
1818
thiserror = "1.0.4"

cranelift/native/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-native"
3-
version = "0.67.0"
3+
version = "0.68.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.67.0", default-features = false }
14+
cranelift-codegen = { path = "../codegen", version = "0.68.0", default-features = false }
1515
target-lexicon = "0.11"
1616

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

cranelift/object/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-object"
3-
version = "0.67.0"
3+
version = "0.68.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.67.0" }
14-
cranelift-codegen = { path = "../codegen", version = "0.67.0", default-features = false, features = ["std"] }
13+
cranelift-module = { path = "../module", version = "0.68.0" }
14+
cranelift-codegen = { path = "../codegen", version = "0.68.0", default-features = false, features = ["std"] }
1515
object = { version = "0.21.1", default-features = false, features = ["write"] }
1616
target-lexicon = "0.11"
1717
anyhow = "1.0"

cranelift/peepmatic/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "peepmatic"
3-
version = "0.67.0"
3+
version = "0.68.0"
44
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
55
edition = "2018"
66
license = "Apache-2.0 WITH LLVM-exception"
@@ -10,13 +10,13 @@ description = "DSL and compiler for generating peephole optimizers"
1010

1111
[dependencies]
1212
anyhow = "1.0.27"
13-
peepmatic-automata = { version = "0.67.0", path = "crates/automata", features = ["dot"] }
14-
peepmatic-macro = { version = "0.67.0", path = "crates/macro" }
15-
peepmatic-runtime = { version = "0.67.0", path = "crates/runtime", features = ["construct"] }
16-
peepmatic-traits = { version = "0.67.0", path = "crates/traits" }
13+
peepmatic-automata = { version = "0.68.0", path = "crates/automata", features = ["dot"] }
14+
peepmatic-macro = { version = "0.68.0", path = "crates/macro" }
15+
peepmatic-runtime = { version = "0.68.0", path = "crates/runtime", features = ["construct"] }
16+
peepmatic-traits = { version = "0.68.0", path = "crates/traits" }
1717
serde = { version = "1.0.105", features = ["derive"] }
1818
wast = "26.0.1"
1919
z3 = { version = "0.7.1", features = ["static-link-z3"] }
2020

2121
[dev-dependencies]
22-
peepmatic-test-operator = { version = "0.67.0", path = "crates/test-operator" }
22+
peepmatic-test-operator = { version = "0.68.0", path = "crates/test-operator" }

cranelift/peepmatic/crates/automata/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "peepmatic-automata"
3-
version = "0.67.0"
3+
version = "0.68.0"
44
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
55
edition = "2018"
66
license = "Apache-2.0 WITH LLVM-exception"

cranelift/peepmatic/crates/macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "peepmatic-macro"
3-
version = "0.67.0"
3+
version = "0.68.0"
44
authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
55
edition = "2018"
66
license = "Apache-2.0 WITH LLVM-exception"

0 commit comments

Comments
 (0)