diff --git a/cranelift/Cargo.toml b/cranelift/Cargo.toml index 04c2168578..f696524ba3 100644 --- a/cranelift/Cargo.toml +++ b/cranelift/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-tools" authors = ["The Cranelift Project Developers"] -version = "0.26.0" +version = "0.27.0" description = "Binaries for testing the Cranelift libraries" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -15,19 +15,19 @@ path = "src/clif-util.rs" [dependencies] cfg-if = "0.1" -cranelift-codegen = { path = "lib/codegen", version = "0.26.0" } -cranelift-entity = { path = "lib/entity", version = "0.26.0" } -cranelift-reader = { path = "lib/reader", version = "0.26.0" } -cranelift-frontend = { path = "lib/frontend", version = "0.26.0" } -cranelift-serde = { path = "lib/serde", version = "0.26.0", optional = true } -cranelift-wasm = { path = "lib/wasm", version = "0.26.0", optional = true } -cranelift-native = { path = "lib/native", version = "0.26.0" } -cranelift-filetests = { path = "lib/filetests", version = "0.26.0" } -cranelift-module = { path = "lib/module", version = "0.26.0" } -cranelift-faerie = { path = "lib/faerie", version = "0.26.0" } -cranelift-simplejit = { path = "lib/simplejit", version = "0.26.0" } -cranelift-preopt = { path = "lib/preopt", version = "0.26.0" } -cranelift = { path = "lib/umbrella", version = "0.26.0" } +cranelift-codegen = { path = "lib/codegen", version = "0.27.0" } +cranelift-entity = { path = "lib/entity", version = "0.27.0" } +cranelift-reader = { path = "lib/reader", version = "0.27.0" } +cranelift-frontend = { path = "lib/frontend", version = "0.27.0" } +cranelift-serde = { path = "lib/serde", version = "0.27.0", optional = true } +cranelift-wasm = { path = "lib/wasm", version = "0.27.0", optional = true } +cranelift-native = { path = "lib/native", version = "0.27.0" } +cranelift-filetests = { path = "lib/filetests", version = "0.27.0" } +cranelift-module = { path = "lib/module", version = "0.27.0" } +cranelift-faerie = { path = "lib/faerie", version = "0.27.0" } +cranelift-simplejit = { path = "lib/simplejit", version = "0.27.0" } +cranelift-preopt = { path = "lib/preopt", version = "0.27.0" } +cranelift = { path = "lib/umbrella", version = "0.27.0" } filecheck = "0.4.0" clap = "2.32.0" serde = "1.0.8" diff --git a/cranelift/publish-all.sh b/cranelift/publish-all.sh index ba9f196ce2..bcdc1abc5a 100755 --- a/cranelift/publish-all.sh +++ b/cranelift/publish-all.sh @@ -9,7 +9,7 @@ topdir=$(dirname "$0") cd "$topdir" # All the cranelift-* crates have the same version number -version="0.26.0" +version="0.27.0" # Update all of the Cargo.toml files. # diff --git a/lib/bforest/Cargo.toml b/lib/bforest/Cargo.toml index 36ec8a752c..a6b61db391 100644 --- a/lib/bforest/Cargo.toml +++ b/lib/bforest/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-bforest" -version = "0.26.0" +version = "0.27.0" description = "A forest of B+-trees" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -12,7 +12,7 @@ keywords = ["btree", "forest", "set", "map"] edition = "2018" [dependencies] -cranelift-entity = { path = "../entity", version = "0.26.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.27.0", default-features = false } [features] default = ["std"] diff --git a/lib/codegen/Cargo.toml b/lib/codegen/Cargo.toml index 6281a77644..2065105d8b 100644 --- a/lib/codegen/Cargo.toml +++ b/lib/codegen/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-codegen" -version = "0.26.0" +version = "0.27.0" description = "Low-level code generator library" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -13,8 +13,8 @@ build = "build.rs" edition = "2018" [dependencies] -cranelift-entity = { path = "../entity", version = "0.26.0", default-features = false } -cranelift-bforest = { path = "../bforest", version = "0.26.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.27.0", default-features = false } +cranelift-bforest = { path = "../bforest", version = "0.27.0", default-features = false } failure = { version = "0.1.1", default-features = false, features = ["derive"] } failure_derive = { version = "0.1.1", default-features = false } hashmap_core = { version = "0.1.9", optional = true } @@ -26,7 +26,7 @@ log = { version = "0.4.6", default-features = false } # accomodated in `tests`. [build-dependencies] -cranelift-codegen-meta = { path = "meta", version = "0.26.0" } +cranelift-codegen-meta = { path = "meta", version = "0.27.0" } [features] # The "std" feature enables use of libstd. The "core" feature enables use diff --git a/lib/codegen/meta/Cargo.toml b/lib/codegen/meta/Cargo.toml index 2b443cb52e..4a70592e0f 100644 --- a/lib/codegen/meta/Cargo.toml +++ b/lib/codegen/meta/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-codegen-meta" authors = ["The Cranelift Project Developers"] -version = "0.26.0" +version = "0.27.0" description = "Metaprogram for cranelift-codegen code generator library" license = "Apache-2.0 WITH LLVM-exception" repository = "https://github.com/CraneStation/cranelift" @@ -9,7 +9,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-entity = { path = "../../entity", version = "0.26.0" } +cranelift-entity = { path = "../../entity", version = "0.27.0" } [badges] maintenance = { status = "experimental" } diff --git a/lib/entity/Cargo.toml b/lib/entity/Cargo.toml index 798a3caacf..876a0de960 100644 --- a/lib/entity/Cargo.toml +++ b/lib/entity/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-entity" -version = "0.26.0" +version = "0.27.0" description = "Data structures using entity references as mapping keys" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" diff --git a/lib/faerie/Cargo.toml b/lib/faerie/Cargo.toml index 4ef81063e9..66523dc1e5 100644 --- a/lib/faerie/Cargo.toml +++ b/lib/faerie/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-faerie" -version = "0.26.0" +version = "0.27.0" authors = ["The Cranelift Project Developers"] description = "Emit Cranelift output to native object files with Faerie" repository = "https://github.com/CraneStation/cranelift" @@ -10,8 +10,8 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.26.0" } -cranelift-module = { path = "../module", version = "0.26.0" } +cranelift-codegen = { path = "../codegen", version = "0.27.0" } +cranelift-module = { path = "../module", version = "0.27.0" } faerie = "0.7.0" goblin = "0.0.19" failure = "0.1.2" diff --git a/lib/filetests/Cargo.toml b/lib/filetests/Cargo.toml index 77505a10e5..5e4ed222ed 100644 --- a/lib/filetests/Cargo.toml +++ b/lib/filetests/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-filetests" authors = ["The Cranelift Project Developers"] -version = "0.26.0" +version = "0.27.0" description = "Test driver and implementations of the filetest commands" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/en/latest/testing.html#file-tests" @@ -10,9 +10,9 @@ publish = false edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.26.0", features = ["testing_hooks"] } -cranelift-reader = { path = "../reader", version = "0.26.0" } -cranelift-preopt = { path = "../preopt", version = "0.26.0" } +cranelift-codegen = { path = "../codegen", version = "0.27.0", features = ["testing_hooks"] } +cranelift-reader = { path = "../reader", version = "0.27.0" } +cranelift-preopt = { path = "../preopt", version = "0.27.0" } file-per-thread-logger = "0.1.2" filecheck = "0.4.0" num_cpus = "1.8.0" diff --git a/lib/frontend/Cargo.toml b/lib/frontend/Cargo.toml index 00391d83bf..9cde5f699a 100644 --- a/lib/frontend/Cargo.toml +++ b/lib/frontend/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-frontend" -version = "0.26.0" +version = "0.27.0" description = "Cranelift IR builder helper" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -11,7 +11,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.26.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.27.0", default-features = false } target-lexicon = { version = "0.2.0", default-features = false } log = { version = "0.4.6", default-features = false } hashmap_core = { version = "0.1.9", optional = true } diff --git a/lib/module/Cargo.toml b/lib/module/Cargo.toml index dbd9f95335..f6a25835f9 100644 --- a/lib/module/Cargo.toml +++ b/lib/module/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-module" -version = "0.26.0" +version = "0.27.0" authors = ["The Cranelift Project Developers"] description = "Support for linking functions and data with Cranelift" repository = "https://github.com/CraneStation/cranelift" @@ -11,8 +11,8 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.26.0", default-features = false } -cranelift-entity = { path = "../entity", version = "0.26.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.27.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.27.0", default-features = false } hashmap_core = { version = "0.1.9", optional = true } failure = { version = "0.1.1", default-features = false } log = { version = "0.4.6", default-features = false } diff --git a/lib/native/Cargo.toml b/lib/native/Cargo.toml index f73357d938..4fb5d94a15 100644 --- a/lib/native/Cargo.toml +++ b/lib/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-native" -version = "0.26.0" +version = "0.27.0" authors = ["The Cranelift Project Developers"] description = "Support for targeting the host with Cranelift" repository = "https://github.com/CraneStation/cranelift" @@ -10,7 +10,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.26.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.27.0", default-features = false } target-lexicon = { version = "0.2.0", default-features = false } [target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies] diff --git a/lib/preopt/Cargo.toml b/lib/preopt/Cargo.toml index 08c492f2f0..34567a7d5d 100644 --- a/lib/preopt/Cargo.toml +++ b/lib/preopt/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-preopt" -version = "0.26.0" +version = "0.27.0" description = "Support for optimizations in Cranelift" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -12,8 +12,8 @@ keywords = ["optimize", "compile", "compiler", "jit"] edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.26.0", default-features = false } -cranelift-entity = { path = "../entity", version = "0.26.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.27.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.27.0", default-features = false } # This is commented out because it doesn't build on Rust 1.25.0, which # cranelift currently supports. # rustc_apfloat = { version = "0.1.2", default-features = false } diff --git a/lib/reader/Cargo.toml b/lib/reader/Cargo.toml index c183e689b3..346cea6cb4 100644 --- a/lib/reader/Cargo.toml +++ b/lib/reader/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-reader" -version = "0.26.0" +version = "0.27.0" description = "Cranelift textual IR reader" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -10,7 +10,7 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.26.0" } +cranelift-codegen = { path = "../codegen", version = "0.27.0" } target-lexicon = "0.2.0" [badges] diff --git a/lib/serde/Cargo.toml b/lib/serde/Cargo.toml index 24aa976671..69ea062477 100644 --- a/lib/serde/Cargo.toml +++ b/lib/serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-serde" -version = "0.26.0" +version = "0.27.0" authors = ["The Cranelift Project Developers"] description = "Serializer/Deserializer for Cranelift IR" repository = "https://github.com/CraneStation/cranelift" @@ -18,8 +18,8 @@ clap = "2.32.0" serde = "1.0.8" serde_derive = "1.0.75" serde_json = "1.0.26" -cranelift-codegen = { path = "../codegen", version = "0.26.0" } -cranelift-reader = { path = "../reader", version = "0.26.0" } +cranelift-codegen = { path = "../codegen", version = "0.27.0" } +cranelift-reader = { path = "../reader", version = "0.27.0" } [badges] maintenance = { status = "experimental" } diff --git a/lib/simplejit/Cargo.toml b/lib/simplejit/Cargo.toml index dd448e9990..4e71bd7af2 100644 --- a/lib/simplejit/Cargo.toml +++ b/lib/simplejit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-simplejit" -version = "0.26.0" +version = "0.27.0" authors = ["The Cranelift Project Developers"] description = "A simple JIT library backed by Cranelift" repository = "https://github.com/CraneStation/cranelift" @@ -10,9 +10,9 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.26.0" } -cranelift-module = { path = "../module", version = "0.26.0" } -cranelift-native = { path = "../native", version = "0.26.0" } +cranelift-codegen = { path = "../codegen", version = "0.27.0" } +cranelift-module = { path = "../module", version = "0.27.0" } +cranelift-native = { path = "../native", version = "0.27.0" } region = "2.0.0" libc = { version = "0.2.42" } errno = "0.2.4" @@ -22,9 +22,9 @@ target-lexicon = { version = "0.2.0" } winapi = { version = "0.3", features = ["winbase", "memoryapi"] } [dev-dependencies] -cranelift = { path = "../umbrella", version = "0.26.0" } -cranelift-frontend = { path = "../frontend", version = "0.26.0" } -cranelift-entity = { path = "../entity", version = "0.26.0" } +cranelift = { path = "../umbrella", version = "0.27.0" } +cranelift-frontend = { path = "../frontend", version = "0.27.0" } +cranelift-entity = { path = "../entity", version = "0.27.0" } [badges] maintenance = { status = "experimental" } diff --git a/lib/umbrella/Cargo.toml b/lib/umbrella/Cargo.toml index eb80082dd6..83567bc0c1 100644 --- a/lib/umbrella/Cargo.toml +++ b/lib/umbrella/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift" -version = "0.26.0" +version = "0.27.0" description = "Umbrella for commonly-used cranelift crates" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -12,8 +12,8 @@ keywords = ["compile", "compiler", "jit"] edition = "2018" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.26.0", default-features = false } -cranelift-frontend = { path = "../frontend", version = "0.26.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.27.0", default-features = false } +cranelift-frontend = { path = "../frontend", version = "0.27.0", default-features = false } [features] default = ["std"] diff --git a/lib/wasm/Cargo.toml b/lib/wasm/Cargo.toml index 88aae1cecf..cbce200f83 100644 --- a/lib/wasm/Cargo.toml +++ b/lib/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-wasm" -version = "0.26.0" +version = "0.27.0" authors = ["The Cranelift Project Developers"] description = "Translator from WebAssembly to Cranelift IR" repository = "https://github.com/CraneStation/cranelift" @@ -12,9 +12,9 @@ edition = "2018" [dependencies] wasmparser = { version = "0.23.0", default-features = false } -cranelift-codegen = { path = "../codegen", version = "0.26.0", default-features = false } -cranelift-entity = { path = "../entity", version = "0.26.0", default-features = false } -cranelift-frontend = { path = "../frontend", version = "0.26.0", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.27.0", default-features = false } +cranelift-entity = { path = "../entity", version = "0.27.0", default-features = false } +cranelift-frontend = { path = "../frontend", version = "0.27.0", default-features = false } hashmap_core = { version = "0.1.9", optional = true } failure = { version = "0.1.1", default-features = false, features = ["derive"] } failure_derive = { version = "0.1.1", default-features = false }