Skip to content
This repository was archived by the owner on Jun 26, 2020. It is now read-only.

Commit 64d5466

Browse files
committed
Bump version to 0.45.0
1 parent f3b39ba commit 64d5466

File tree

19 files changed

+68
-68
lines changed

19 files changed

+68
-68
lines changed

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.44.0"
4+
version = "0.45.0"
55
description = "Binaries for testing the Cranelift libraries"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://cranelift.readthedocs.io/"
@@ -19,20 +19,20 @@ path = "src/clif-util.rs"
1919

2020
[dependencies]
2121
cfg-if = "0.1"
22-
cranelift-codegen = { path = "cranelift-codegen", version = "0.44.0" }
23-
cranelift-entity = { path = "cranelift-entity", version = "0.44.0" }
24-
cranelift-reader = { path = "cranelift-reader", version = "0.44.0" }
25-
cranelift-frontend = { path = "cranelift-frontend", version = "0.44.0" }
26-
cranelift-serde = { path = "cranelift-serde", version = "0.44.0", optional = true }
27-
cranelift-wasm = { path = "cranelift-wasm", version = "0.44.0", optional = true }
28-
cranelift-native = { path = "cranelift-native", version = "0.44.0" }
29-
cranelift-filetests = { path = "cranelift-filetests", version = "0.44.0" }
30-
cranelift-module = { path = "cranelift-module", version = "0.44.0" }
31-
cranelift-faerie = { path = "cranelift-faerie", version = "0.44.0" }
32-
cranelift-object = { path = "cranelift-object", version = "0.44.0" }
33-
cranelift-simplejit = { path = "cranelift-simplejit", version = "0.44.0" }
34-
cranelift-preopt = { path = "cranelift-preopt", version = "0.44.0" }
35-
cranelift = { path = "cranelift-umbrella", version = "0.44.0" }
22+
cranelift-codegen = { path = "cranelift-codegen", version = "0.45.0" }
23+
cranelift-entity = { path = "cranelift-entity", version = "0.45.0" }
24+
cranelift-reader = { path = "cranelift-reader", version = "0.45.0" }
25+
cranelift-frontend = { path = "cranelift-frontend", version = "0.45.0" }
26+
cranelift-serde = { path = "cranelift-serde", version = "0.45.0", optional = true }
27+
cranelift-wasm = { path = "cranelift-wasm", version = "0.45.0", optional = true }
28+
cranelift-native = { path = "cranelift-native", version = "0.45.0" }
29+
cranelift-filetests = { path = "cranelift-filetests", version = "0.45.0" }
30+
cranelift-module = { path = "cranelift-module", version = "0.45.0" }
31+
cranelift-faerie = { path = "cranelift-faerie", version = "0.45.0" }
32+
cranelift-object = { path = "cranelift-object", version = "0.45.0" }
33+
cranelift-simplejit = { path = "cranelift-simplejit", version = "0.45.0" }
34+
cranelift-preopt = { path = "cranelift-preopt", version = "0.45.0" }
35+
cranelift = { path = "cranelift-umbrella", version = "0.45.0" }
3636
filecheck = "0.4.0"
3737
clap = "2.32.0"
3838
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.44.0"
4+
version = "0.45.0"
55
description = "A forest of B+-trees"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://cranelift.readthedocs.io/"
@@ -12,7 +12,7 @@ keywords = ["btree", "forest", "set", "map"]
1212
edition = "2018"
1313

1414
[dependencies]
15-
cranelift-entity = { path = "../cranelift-entity", version = "0.44.0", default-features = false }
15+
cranelift-entity = { path = "../cranelift-entity", version = "0.45.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.44.0"
4+
version = "0.45.0"
55
description = "Low-level code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://cranelift.readthedocs.io/"
@@ -13,9 +13,9 @@ build = "build.rs"
1313
edition = "2018"
1414

1515
[dependencies]
16-
cranelift-codegen-shared = { path = "./shared", version = "0.44.0" }
17-
cranelift-entity = { path = "../cranelift-entity", version = "0.44.0" }
18-
cranelift-bforest = { path = "../cranelift-bforest", version = "0.44.0" }
16+
cranelift-codegen-shared = { path = "./shared", version = "0.45.0" }
17+
cranelift-entity = { path = "../cranelift-entity", version = "0.45.0" }
18+
cranelift-bforest = { path = "../cranelift-bforest", version = "0.45.0" }
1919
failure = { version = "0.1.1", default-features = false, features = ["derive"] }
2020
failure_derive = { version = "0.1.1", default-features = false }
2121
hashbrown = { version = "0.6", optional = true }
@@ -29,7 +29,7 @@ smallvec = { version = "0.6.10" }
2929
# accomodated in `tests`.
3030

3131
[build-dependencies]
32-
cranelift-codegen-meta = { path = "meta", version = "0.44.0" }
32+
cranelift-codegen-meta = { path = "meta", version = "0.45.0" }
3333

3434
[features]
3535
default = ["std"]

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.44.0"
4+
version = "0.45.0"
55
description = "Metaprogram for cranelift-codegen code generator library"
66
license = "Apache-2.0 WITH LLVM-exception"
77
repository = "https://github.com/CraneStation/cranelift"
88
readme = "README.md"
99
edition = "2018"
1010

1111
[dependencies]
12-
cranelift-codegen-shared = { path = "../shared", version = "0.44.0" }
13-
cranelift-entity = { path = "../../cranelift-entity", version = "0.44.0" }
12+
cranelift-codegen-shared = { path = "../shared", version = "0.45.0" }
13+
cranelift-entity = { path = "../../cranelift-entity", version = "0.45.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.44.0"
4+
version = "0.45.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/CraneStation/cranelift"

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.44.0"
4+
version = "0.45.0"
55
description = "Data structures using entity references as mapping keys"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://cranelift.readthedocs.io/"

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.44.0"
3+
version = "0.45.0"
44
authors = ["The Cranelift Project Developers"]
55
description = "Emit Cranelift output to native object files with Faerie"
66
repository = "https://github.com/CraneStation/cranelift"
@@ -10,8 +10,8 @@ readme = "README.md"
1010
edition = "2018"
1111

1212
[dependencies]
13-
cranelift-codegen = { path = "../cranelift-codegen", version = "0.44.0" }
14-
cranelift-module = { path = "../cranelift-module", version = "0.44.0" }
13+
cranelift-codegen = { path = "../cranelift-codegen", version = "0.45.0" }
14+
cranelift-module = { path = "../cranelift-module", version = "0.45.0" }
1515
faerie = "0.11.0"
1616
goblin = "0.0.24"
1717
failure = "0.1.2"

cranelift-filetests/Cargo.toml

Lines changed: 5 additions & 5 deletions
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.44.0"
4+
version = "0.45.0"
55
description = "Test driver and implementations of the filetest commands"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://cranelift.readthedocs.io/en/latest/testing.html#file-tests"
@@ -10,10 +10,10 @@ publish = false
1010
edition = "2018"
1111

1212
[dependencies]
13-
cranelift-codegen = { path = "../cranelift-codegen", version = "0.44.0", features = ["testing_hooks"] }
14-
cranelift-native = { path = "../cranelift-native", version = "0.44.0" }
15-
cranelift-reader = { path = "../cranelift-reader", version = "0.44.0" }
16-
cranelift-preopt = { path = "../cranelift-preopt", version = "0.44.0" }
13+
cranelift-codegen = { path = "../cranelift-codegen", version = "0.45.0", features = ["testing_hooks"] }
14+
cranelift-native = { path = "../cranelift-native", version = "0.45.0" }
15+
cranelift-reader = { path = "../cranelift-reader", version = "0.45.0" }
16+
cranelift-preopt = { path = "../cranelift-preopt", version = "0.45.0" }
1717
file-per-thread-logger = "0.1.2"
1818
filecheck = "0.4.0"
1919
log = "0.4.6"

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.44.0"
4+
version = "0.45.0"
55
description = "Cranelift IR builder helper"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://cranelift.readthedocs.io/"
@@ -11,7 +11,7 @@ readme = "README.md"
1111
edition = "2018"
1212

1313
[dependencies]
14-
cranelift-codegen = { path = "../cranelift-codegen", version = "0.44.0", default-features = false }
14+
cranelift-codegen = { path = "../cranelift-codegen", version = "0.45.0", default-features = false }
1515
target-lexicon = "0.8.1"
1616
log = { version = "0.4.6", default-features = false }
1717
hashbrown = { version = "0.6", optional = true }

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.44.0"
3+
version = "0.45.0"
44
authors = ["The Cranelift Project Developers"]
55
description = "Support for linking functions and data with Cranelift"
66
repository = "https://github.com/CraneStation/cranelift"
@@ -11,8 +11,8 @@ readme = "README.md"
1111
edition = "2018"
1212

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

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.44.0"
3+
version = "0.45.0"
44
authors = ["The Cranelift Project Developers"]
55
description = "Support for targeting the host with Cranelift"
66
repository = "https://github.com/CraneStation/cranelift"
@@ -10,7 +10,7 @@ readme = "README.md"
1010
edition = "2018"
1111

1212
[dependencies]
13-
cranelift-codegen = { path = "../cranelift-codegen", version = "0.44.0", default-features = false }
13+
cranelift-codegen = { path = "../cranelift-codegen", version = "0.45.0", default-features = false }
1414
target-lexicon = "0.8.1"
1515

1616
[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.44.0"
3+
version = "0.45.0"
44
authors = ["The Cranelift Project Developers"]
55
description = "Emit Cranelift output to native object files with `object`"
66
repository = "https://github.com/CraneStation/cranelift"
@@ -10,8 +10,8 @@ readme = "README.md"
1010
edition = "2018"
1111

1212
[dependencies]
13-
cranelift-codegen = { path = "../cranelift-codegen", version = "0.44.0" }
14-
cranelift-module = { path = "../cranelift-module", version = "0.44.0" }
13+
cranelift-codegen = { path = "../cranelift-codegen", version = "0.45.0" }
14+
cranelift-module = { path = "../cranelift-module", version = "0.45.0" }
1515
object = { version = "0.14.0", default-features = false, features = ["write"] }
1616
target-lexicon = "0.8.1"
1717

cranelift-preopt/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.44.0"
4+
version = "0.45.0"
55
description = "Support for optimizations in Cranelift"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://cranelift.readthedocs.io/"
@@ -12,8 +12,8 @@ keywords = ["optimize", "compile", "compiler", "jit"]
1212
edition = "2018"
1313

1414
[dependencies]
15-
cranelift-codegen = { path = "../cranelift-codegen", version = "0.44.0", default-features = false }
16-
cranelift-entity = { path = "../cranelift-entity", version = "0.44.0" }
15+
cranelift-codegen = { path = "../cranelift-codegen", version = "0.45.0", default-features = false }
16+
cranelift-entity = { path = "../cranelift-entity", version = "0.45.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

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-reader"
4-
version = "0.44.0"
4+
version = "0.45.0"
55
description = "Cranelift textual IR reader"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://cranelift.readthedocs.io/"
@@ -10,7 +10,7 @@ readme = "README.md"
1010
edition = "2018"
1111

1212
[dependencies]
13-
cranelift-codegen = { path = "../cranelift-codegen", version = "0.44.0" }
13+
cranelift-codegen = { path = "../cranelift-codegen", version = "0.45.0" }
1414
target-lexicon = "0.8.1"
1515

1616
[badges]

cranelift-serde/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-serde"
3-
version = "0.44.0"
3+
version = "0.45.0"
44
authors = ["The Cranelift Project Developers"]
55
description = "Serializer/Deserializer for Cranelift IR"
66
repository = "https://github.com/CraneStation/cranelift"
@@ -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 = "../cranelift-codegen", version = "0.44.0" }
22-
cranelift-reader = { path = "../cranelift-reader", version = "0.44.0" }
21+
cranelift-codegen = { path = "../cranelift-codegen", version = "0.45.0" }
22+
cranelift-reader = { path = "../cranelift-reader", version = "0.45.0" }
2323

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

cranelift-simplejit/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-simplejit"
3-
version = "0.44.0"
3+
version = "0.45.0"
44
authors = ["The Cranelift Project Developers"]
55
description = "A simple JIT library backed by Cranelift"
66
repository = "https://github.com/CraneStation/cranelift"
@@ -10,9 +10,9 @@ readme = "README.md"
1010
edition = "2018"
1111

1212
[dependencies]
13-
cranelift-codegen = { path = "../cranelift-codegen", version = "0.44.0" }
14-
cranelift-module = { path = "../cranelift-module", version = "0.44.0" }
15-
cranelift-native = { path = "../cranelift-native", version = "0.44.0" }
13+
cranelift-codegen = { path = "../cranelift-codegen", version = "0.45.0" }
14+
cranelift-module = { path = "../cranelift-module", version = "0.45.0" }
15+
cranelift-native = { path = "../cranelift-native", version = "0.45.0" }
1616
region = "2.0.0"
1717
libc = { version = "0.2.42" }
1818
errno = "0.2.4"
@@ -27,9 +27,9 @@ selinux-fix = ['memmap']
2727
default = []
2828

2929
[dev-dependencies]
30-
cranelift = { path = "../cranelift-umbrella", version = "0.44.0" }
31-
cranelift-frontend = { path = "../cranelift-frontend", version = "0.44.0" }
32-
cranelift-entity = { path = "../cranelift-entity", version = "0.44.0" }
30+
cranelift = { path = "../cranelift-umbrella", version = "0.45.0" }
31+
cranelift-frontend = { path = "../cranelift-frontend", version = "0.45.0" }
32+
cranelift-entity = { path = "../cranelift-entity", version = "0.45.0" }
3333

3434
[badges]
3535
maintenance = { status = "experimental" }

cranelift-umbrella/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["The Cranelift Project Developers"]
33
name = "cranelift"
4-
version = "0.44.0"
4+
version = "0.45.0"
55
description = "Umbrella for commonly-used cranelift crates"
66
license = "Apache-2.0 WITH LLVM-exception"
77
documentation = "https://cranelift.readthedocs.io/"
@@ -12,8 +12,8 @@ keywords = ["compile", "compiler", "jit"]
1212
edition = "2018"
1313

1414
[dependencies]
15-
cranelift-codegen = { path = "../cranelift-codegen", version = "0.44.0", default-features = false }
16-
cranelift-frontend = { path = "../cranelift-frontend", version = "0.44.0", default-features = false }
15+
cranelift-codegen = { path = "../cranelift-codegen", version = "0.45.0", default-features = false }
16+
cranelift-frontend = { path = "../cranelift-frontend", version = "0.45.0", default-features = false }
1717

1818
[features]
1919
default = ["std"]

cranelift-wasm/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cranelift-wasm"
3-
version = "0.44.0"
3+
version = "0.45.0"
44
authors = ["The Cranelift Project Developers"]
55
description = "Translator from WebAssembly to Cranelift IR"
66
repository = "https://github.com/CraneStation/cranelift"
@@ -12,9 +12,9 @@ edition = "2018"
1212

1313
[dependencies]
1414
wasmparser = { version = "0.39.2", default-features = false }
15-
cranelift-codegen = { path = "../cranelift-codegen", version = "0.44.0", default-features = false }
16-
cranelift-entity = { path = "../cranelift-entity", version = "0.44.0" }
17-
cranelift-frontend = { path = "../cranelift-frontend", version = "0.44.0", default-features = false }
15+
cranelift-codegen = { path = "../cranelift-codegen", version = "0.45.0", default-features = false }
16+
cranelift-entity = { path = "../cranelift-entity", version = "0.45.0" }
17+
cranelift-frontend = { path = "../cranelift-frontend", version = "0.45.0", default-features = false }
1818
hashbrown = { version = "0.6", optional = true }
1919
failure = { version = "0.1.1", default-features = false, features = ["derive"] }
2020
failure_derive = { version = "0.1.1", default-features = false }

publish-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ topdir=$(dirname "$0")
99
cd "$topdir"
1010

1111
# All the cranelift-* crates have the same version number
12-
version="0.44.0"
12+
version="0.45.0"
1313

1414
# Update all of the Cargo.toml files.
1515
#

0 commit comments

Comments
 (0)