Skip to content

Commit 8854dec

Browse files
committed
Bump version to 0.24.0
I used a specially modified version of the publish script to avoid bumping the `witx` version.
1 parent 1cfcb66 commit 8854dec

File tree

54 files changed

+249
-249
lines changed

Some content is hidden

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

54 files changed

+249
-249
lines changed

Cargo.lock

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

Cargo.toml

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

2323
[dependencies]
2424
# Enable all supported architectures by default.
25-
wasmtime = { path = "crates/wasmtime", version = "0.23.0", default-features = false, features = ['cache'] }
26-
wasmtime-cache = { path = "crates/cache", version = "0.23.0" }
27-
wasmtime-debug = { path = "crates/debug", version = "0.23.0" }
28-
wasmtime-environ = { path = "crates/environ", version = "0.23.0" }
29-
wasmtime-jit = { path = "crates/jit", version = "0.23.0" }
30-
wasmtime-obj = { path = "crates/obj", version = "0.23.0" }
31-
wasmtime-wast = { path = "crates/wast", version = "0.23.0" }
32-
wasmtime-wasi = { path = "crates/wasi", version = "0.23.0" }
33-
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.23.0", optional = true }
34-
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.23.0", optional = true }
35-
wasi-common = { path = "crates/wasi-common", version = "0.23.0" }
36-
wasi-cap-std-sync = { path = "crates/wasi-common/cap-std-sync", version = "0.23.0" }
25+
wasmtime = { path = "crates/wasmtime", version = "0.24.0", default-features = false, features = ['cache'] }
26+
wasmtime-cache = { path = "crates/cache", version = "0.24.0" }
27+
wasmtime-debug = { path = "crates/debug", version = "0.24.0" }
28+
wasmtime-environ = { path = "crates/environ", version = "0.24.0" }
29+
wasmtime-jit = { path = "crates/jit", version = "0.24.0" }
30+
wasmtime-obj = { path = "crates/obj", version = "0.24.0" }
31+
wasmtime-wast = { path = "crates/wast", version = "0.24.0" }
32+
wasmtime-wasi = { path = "crates/wasi", version = "0.24.0" }
33+
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.24.0", optional = true }
34+
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.24.0", optional = true }
35+
wasi-common = { path = "crates/wasi-common", version = "0.24.0" }
36+
wasi-cap-std-sync = { path = "crates/wasi-common/cap-std-sync", version = "0.24.0" }
3737
structopt = { version = "0.3.5", features = ["color", "suggestions"] }
3838
object = { version = "0.23.0", default-features = false, features = ["write"] }
3939
anyhow = "1.0.19"

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.70.0" }
19-
cranelift-entity = { path = "entity", version = "0.70.0" }
20-
cranelift-interpreter = { path = "interpreter", version = "0.70.0" }
21-
cranelift-reader = { path = "reader", version = "0.70.0" }
22-
cranelift-frontend = { path = "frontend", version = "0.70.0" }
23-
cranelift-serde = { path = "serde", version = "0.70.0", optional = true }
24-
cranelift-wasm = { path = "wasm", version = "0.70.0", optional = true }
25-
cranelift-native = { path = "native", version = "0.70.0" }
18+
cranelift-codegen = { path = "codegen", version = "0.71.0" }
19+
cranelift-entity = { path = "entity", version = "0.71.0" }
20+
cranelift-interpreter = { path = "interpreter", version = "0.71.0" }
21+
cranelift-reader = { path = "reader", version = "0.71.0" }
22+
cranelift-frontend = { path = "frontend", version = "0.71.0" }
23+
cranelift-serde = { path = "serde", version = "0.71.0", optional = true }
24+
cranelift-wasm = { path = "wasm", version = "0.71.0", optional = true }
25+
cranelift-native = { path = "native", version = "0.71.0" }
2626
cranelift-filetests = { path = "filetests", version = "0.66.0" }
27-
cranelift-module = { path = "module", version = "0.70.0" }
28-
cranelift-object = { path = "object", version = "0.70.0" }
29-
cranelift-jit = { path = "jit", version = "0.70.0" }
30-
cranelift-preopt = { path = "preopt", version = "0.70.0" }
31-
cranelift = { path = "umbrella", version = "0.70.0" }
27+
cranelift-module = { path = "module", version = "0.71.0" }
28+
cranelift-object = { path = "object", version = "0.71.0" }
29+
cranelift-jit = { path = "jit", version = "0.71.0" }
30+
cranelift-preopt = { path = "preopt", version = "0.71.0" }
31+
cranelift = { path = "umbrella", version = "0.71.0" }
3232
filecheck = "0.5.0"
3333
log = "0.4.8"
3434
termcolor = "1.1.2"
3535
capstone = { version = "0.7.0", optional = true }
3636
wat = { version = "1.0.36", optional = true }
3737
target-lexicon = { version = "0.11", features = ["std"] }
38-
peepmatic-souper = { path = "./peepmatic/crates/souper", version = "0.70.0", optional = true }
38+
peepmatic-souper = { path = "./peepmatic/crates/souper", version = "0.71.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.70.0"
4+
version = "0.71.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.70.0", default-features = false }
15+
cranelift-entity = { path = "../entity", version = "0.71.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.70.0"
4+
version = "0.71.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.70.0" }
17-
cranelift-entity = { path = "../entity", version = "0.70.0" }
18-
cranelift-bforest = { path = "../bforest", version = "0.70.0" }
16+
cranelift-codegen-shared = { path = "./shared", version = "0.71.0" }
17+
cranelift-entity = { path = "../entity", version = "0.71.0" }
18+
cranelift-bforest = { path = "../bforest", version = "0.71.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.23.0", default-features = false, features = ["write"], op
2525
smallvec = { version = "1.6.1" }
2626
thiserror = "1.0.4"
2727
byteorder = { version = "1.3.2", default-features = false }
28-
peepmatic = { path = "../peepmatic", optional = true, version = "0.70.0" }
29-
peepmatic-traits = { path = "../peepmatic/crates/traits", optional = true, version = "0.70.0" }
30-
peepmatic-runtime = { path = "../peepmatic/crates/runtime", optional = true, version = "0.70.0" }
28+
peepmatic = { path = "../peepmatic", optional = true, version = "0.71.0" }
29+
peepmatic-traits = { path = "../peepmatic/crates/traits", optional = true, version = "0.71.0" }
30+
peepmatic-runtime = { path = "../peepmatic/crates/runtime", optional = true, version = "0.71.0" }
3131
regalloc = { version = "0.0.31" }
3232
souper-ir = { version = "2.1.0", optional = true }
3333
wast = { version = "35.0.0", optional = true }
@@ -37,7 +37,7 @@ wast = { version = "35.0.0", optional = true }
3737
# accomodated in `tests`.
3838

3939
[build-dependencies]
40-
cranelift-codegen-meta = { path = "meta", version = "0.70.0" }
40+
cranelift-codegen-meta = { path = "meta", version = "0.71.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.70.0"
4+
version = "0.71.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.70.0" }
16-
cranelift-entity = { path = "../../entity", version = "0.70.0" }
15+
cranelift-codegen-shared = { path = "../shared", version = "0.71.0" }
16+
cranelift-entity = { path = "../../entity", version = "0.71.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.70.0"
4+
version = "0.71.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.70.0"
4+
version = "0.71.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.70.0", features = ["testing_hooks"] }
14-
cranelift-frontend = { path = "../frontend", version = "0.70.0" }
15-
cranelift-interpreter = { path = "../interpreter", version = "0.70.0" }
16-
cranelift-native = { path = "../native", version = "0.70.0" }
17-
cranelift-reader = { path = "../reader", version = "0.70.0" }
18-
cranelift-preopt = { path = "../preopt", version = "0.70.0" }
13+
cranelift-codegen = { path = "../codegen", version = "0.71.0", features = ["testing_hooks"] }
14+
cranelift-frontend = { path = "../frontend", version = "0.71.0" }
15+
cranelift-interpreter = { path = "../interpreter", version = "0.71.0" }
16+
cranelift-native = { path = "../native", version = "0.71.0" }
17+
cranelift-reader = { path = "../reader", version = "0.71.0" }
18+
cranelift-preopt = { path = "../preopt", version = "0.71.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.70.0"
4+
version = "0.71.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.70.0", default-features = false }
14+
cranelift-codegen = { path = "../codegen", version = "0.71.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 }

0 commit comments

Comments
 (0)