From cf82863ea92ae8a3bd82a9e717fb89949fba770b Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 6 Nov 2019 14:38:46 -0800 Subject: [PATCH] Bump version to 0.49.0 (#1208) --- cranelift/Cargo.toml | 30 ++++++++++++++--------------- cranelift/bforest/Cargo.toml | 4 ++-- cranelift/codegen/Cargo.toml | 10 +++++----- cranelift/codegen/meta/Cargo.toml | 6 +++--- cranelift/codegen/shared/Cargo.toml | 2 +- cranelift/entity/Cargo.toml | 2 +- cranelift/faerie/Cargo.toml | 8 ++++---- cranelift/filetests/Cargo.toml | 10 +++++----- cranelift/frontend/Cargo.toml | 4 ++-- cranelift/module/Cargo.toml | 6 +++--- cranelift/native/Cargo.toml | 4 ++-- cranelift/object/Cargo.toml | 6 +++--- cranelift/preopt/Cargo.toml | 6 +++--- cranelift/publish-all.sh | 2 +- cranelift/reader/Cargo.toml | 4 ++-- cranelift/serde/Cargo.toml | 6 +++--- cranelift/simplejit/Cargo.toml | 14 +++++++------- cranelift/umbrella/Cargo.toml | 6 +++--- cranelift/wasm/Cargo.toml | 8 ++++---- 19 files changed, 69 insertions(+), 69 deletions(-) diff --git a/cranelift/Cargo.toml b/cranelift/Cargo.toml index fb3606c092..521037ce53 100644 --- a/cranelift/Cargo.toml +++ b/cranelift/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-tools" authors = ["The Cranelift Project Developers"] -version = "0.48.0" +version = "0.49.0" description = "Binaries for testing the Cranelift libraries" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -19,20 +19,20 @@ path = "src/clif-util.rs" [dependencies] cfg-if = "0.1" -cranelift-codegen = { path = "cranelift-codegen", version = "0.48.0" } -cranelift-entity = { path = "cranelift-entity", version = "0.48.0" } -cranelift-reader = { path = "cranelift-reader", version = "0.48.0" } -cranelift-frontend = { path = "cranelift-frontend", version = "0.48.0" } -cranelift-serde = { path = "cranelift-serde", version = "0.48.0", optional = true } -cranelift-wasm = { path = "cranelift-wasm", version = "0.48.0", optional = true } -cranelift-native = { path = "cranelift-native", version = "0.48.0" } -cranelift-filetests = { path = "cranelift-filetests", version = "0.48.0" } -cranelift-module = { path = "cranelift-module", version = "0.48.0" } -cranelift-faerie = { path = "cranelift-faerie", version = "0.48.0" } -cranelift-object = { path = "cranelift-object", version = "0.48.0" } -cranelift-simplejit = { path = "cranelift-simplejit", version = "0.48.0" } -cranelift-preopt = { path = "cranelift-preopt", version = "0.48.0" } -cranelift = { path = "cranelift-umbrella", version = "0.48.0" } +cranelift-codegen = { path = "cranelift-codegen", version = "0.49.0" } +cranelift-entity = { path = "cranelift-entity", version = "0.49.0" } +cranelift-reader = { path = "cranelift-reader", version = "0.49.0" } +cranelift-frontend = { path = "cranelift-frontend", version = "0.49.0" } +cranelift-serde = { path = "cranelift-serde", version = "0.49.0", optional = true } +cranelift-wasm = { path = "cranelift-wasm", version = "0.49.0", optional = true } +cranelift-native = { path = "cranelift-native", version = "0.49.0" } +cranelift-filetests = { path = "cranelift-filetests", version = "0.49.0" } +cranelift-module = { path = "cranelift-module", version = "0.49.0" } +cranelift-faerie = { path = "cranelift-faerie", version = "0.49.0" } +cranelift-object = { path = "cranelift-object", version = "0.49.0" } +cranelift-simplejit = { path = "cranelift-simplejit", version = "0.49.0" } +cranelift-preopt = { path = "cranelift-preopt", version = "0.49.0" } +cranelift = { path = "cranelift-umbrella", version = "0.49.0" } filecheck = "0.4.0" clap = "2.32.0" serde = "1.0.8" diff --git a/cranelift/bforest/Cargo.toml b/cranelift/bforest/Cargo.toml index 0f782c89cf..185972c9f0 100644 --- a/cranelift/bforest/Cargo.toml +++ b/cranelift/bforest/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-bforest" -version = "0.48.0" +version = "0.49.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 = "../cranelift-entity", version = "0.48.0", default-features = false } +cranelift-entity = { path = "../cranelift-entity", version = "0.49.0", default-features = false } [badges] maintenance = { status = "experimental" } diff --git a/cranelift/codegen/Cargo.toml b/cranelift/codegen/Cargo.toml index 794f560ac1..29a07cda3b 100644 --- a/cranelift/codegen/Cargo.toml +++ b/cranelift/codegen/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-codegen" -version = "0.48.0" +version = "0.49.0" description = "Low-level code generator library" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -13,9 +13,9 @@ build = "build.rs" edition = "2018" [dependencies] -cranelift-codegen-shared = { path = "./shared", version = "0.48.0" } -cranelift-entity = { path = "../cranelift-entity", version = "0.48.0" } -cranelift-bforest = { path = "../cranelift-bforest", version = "0.48.0" } +cranelift-codegen-shared = { path = "./shared", version = "0.49.0" } +cranelift-entity = { path = "../cranelift-entity", version = "0.49.0" } +cranelift-bforest = { path = "../cranelift-bforest", version = "0.49.0" } hashbrown = { version = "0.6", optional = true } target-lexicon = "0.9" log = { version = "0.4.6", default-features = false } @@ -29,7 +29,7 @@ byteorder = { version = "1.3.2" } # accomodated in `tests`. [build-dependencies] -cranelift-codegen-meta = { path = "meta", version = "0.48.0" } +cranelift-codegen-meta = { path = "meta", version = "0.49.0" } [features] default = ["std", "basic-blocks"] diff --git a/cranelift/codegen/meta/Cargo.toml b/cranelift/codegen/meta/Cargo.toml index 6022e8ae8a..5d2aa01350 100644 --- a/cranelift/codegen/meta/Cargo.toml +++ b/cranelift/codegen/meta/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-codegen-meta" authors = ["The Cranelift Project Developers"] -version = "0.48.0" +version = "0.49.0" description = "Metaprogram for cranelift-codegen code generator library" license = "Apache-2.0 WITH LLVM-exception" repository = "https://github.com/CraneStation/cranelift" @@ -9,8 +9,8 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-codegen-shared = { path = "../shared", version = "0.48.0" } -cranelift-entity = { path = "../../cranelift-entity", version = "0.48.0" } +cranelift-codegen-shared = { path = "../shared", version = "0.49.0" } +cranelift-entity = { path = "../../cranelift-entity", version = "0.49.0" } [badges] maintenance = { status = "experimental" } diff --git a/cranelift/codegen/shared/Cargo.toml b/cranelift/codegen/shared/Cargo.toml index 83b56b4106..9237b6812f 100644 --- a/cranelift/codegen/shared/Cargo.toml +++ b/cranelift/codegen/shared/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-codegen-shared" -version = "0.48.0" +version = "0.49.0" description = "For code shared between cranelift-codegen-meta and cranelift-codegen" license = "Apache-2.0 WITH LLVM-exception" repository = "https://github.com/CraneStation/cranelift" diff --git a/cranelift/entity/Cargo.toml b/cranelift/entity/Cargo.toml index 09d4ce10a4..9803503ffe 100644 --- a/cranelift/entity/Cargo.toml +++ b/cranelift/entity/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-entity" -version = "0.48.0" +version = "0.49.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/cranelift/faerie/Cargo.toml b/cranelift/faerie/Cargo.toml index a886efa69f..66b6a4bd92 100644 --- a/cranelift/faerie/Cargo.toml +++ b/cranelift/faerie/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-faerie" -version = "0.48.0" +version = "0.49.0" authors = ["The Cranelift Project Developers"] description = "Emit Cranelift output to native object files with Faerie" repository = "https://github.com/CraneStation/cranelift" @@ -10,15 +10,15 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-module = { path = "../cranelift-module", version = "0.48.0" } -faerie = "0.11.1" +cranelift-module = { path = "../cranelift-module", version = "0.49.0" } +faerie = "0.12.0" goblin = "0.1.0" failure = "0.1.2" target-lexicon = "0.9" [dependencies.cranelift-codegen] path = "../cranelift-codegen" -version = "0.48.0" +version = "0.49.0" default-features = false features = ["std"] diff --git a/cranelift/filetests/Cargo.toml b/cranelift/filetests/Cargo.toml index bea35779a1..b65a1c36d9 100644 --- a/cranelift/filetests/Cargo.toml +++ b/cranelift/filetests/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-filetests" authors = ["The Cranelift Project Developers"] -version = "0.48.0" +version = "0.49.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,10 +10,10 @@ publish = false edition = "2018" [dependencies] -cranelift-codegen = { path = "../cranelift-codegen", version = "0.48.0", features = ["testing_hooks"] } -cranelift-native = { path = "../cranelift-native", version = "0.48.0" } -cranelift-reader = { path = "../cranelift-reader", version = "0.48.0" } -cranelift-preopt = { path = "../cranelift-preopt", version = "0.48.0" } +cranelift-codegen = { path = "../cranelift-codegen", version = "0.49.0", features = ["testing_hooks"] } +cranelift-native = { path = "../cranelift-native", version = "0.49.0" } +cranelift-reader = { path = "../cranelift-reader", version = "0.49.0" } +cranelift-preopt = { path = "../cranelift-preopt", version = "0.49.0" } file-per-thread-logger = "0.1.2" filecheck = "0.4.0" log = "0.4.6" diff --git a/cranelift/frontend/Cargo.toml b/cranelift/frontend/Cargo.toml index 8fe7f0aebb..63bdf8ec62 100644 --- a/cranelift/frontend/Cargo.toml +++ b/cranelift/frontend/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-frontend" -version = "0.48.0" +version = "0.49.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 = "../cranelift-codegen", version = "0.48.0", default-features = false } +cranelift-codegen = { path = "../cranelift-codegen", version = "0.49.0", default-features = false } target-lexicon = "0.9" log = { version = "0.4.6", default-features = false } hashbrown = { version = "0.6", optional = true } diff --git a/cranelift/module/Cargo.toml b/cranelift/module/Cargo.toml index dbc4f413d0..89764df3fa 100644 --- a/cranelift/module/Cargo.toml +++ b/cranelift/module/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-module" -version = "0.48.0" +version = "0.49.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 = "../cranelift-codegen", version = "0.48.0", default-features = false } -cranelift-entity = { path = "../cranelift-entity", version = "0.48.0" } +cranelift-codegen = { path = "../cranelift-codegen", version = "0.49.0", default-features = false } +cranelift-entity = { path = "../cranelift-entity", version = "0.49.0" } hashbrown = { version = "0.6", optional = true } log = { version = "0.4.6", default-features = false } thiserror = "1.0.4" diff --git a/cranelift/native/Cargo.toml b/cranelift/native/Cargo.toml index 96d4395ac3..7d62dfe95b 100644 --- a/cranelift/native/Cargo.toml +++ b/cranelift/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-native" -version = "0.48.0" +version = "0.49.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 = "../cranelift-codegen", version = "0.48.0", default-features = false } +cranelift-codegen = { path = "../cranelift-codegen", version = "0.49.0", default-features = false } target-lexicon = "0.9" [target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies] diff --git a/cranelift/object/Cargo.toml b/cranelift/object/Cargo.toml index 2df95b41f8..7693cde0c5 100644 --- a/cranelift/object/Cargo.toml +++ b/cranelift/object/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-object" -version = "0.48.0" +version = "0.49.0" authors = ["The Cranelift Project Developers"] description = "Emit Cranelift output to native object files with `object`" repository = "https://github.com/CraneStation/cranelift" @@ -10,13 +10,13 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-module = { path = "../cranelift-module", version = "0.48.0" } +cranelift-module = { path = "../cranelift-module", version = "0.49.0" } object = { git = "https://github.com/gimli-rs/object", rev = "cba3ed4932e4c594c5eab4f5ef6c51838f4a5056", default-features = false, features = ["write"] } target-lexicon = "0.9" [dependencies.cranelift-codegen] path = "../cranelift-codegen" -version = "0.48.0" +version = "0.49.0" default-features = false features = ["std"] diff --git a/cranelift/preopt/Cargo.toml b/cranelift/preopt/Cargo.toml index bd0cb7c3a4..54c891ded4 100644 --- a/cranelift/preopt/Cargo.toml +++ b/cranelift/preopt/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-preopt" -version = "0.48.0" +version = "0.49.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 = "../cranelift-codegen", version = "0.48.0", default-features = false } -cranelift-entity = { path = "../cranelift-entity", version = "0.48.0" } +cranelift-codegen = { path = "../cranelift-codegen", version = "0.49.0", default-features = false } +cranelift-entity = { path = "../cranelift-entity", version = "0.49.0" } # 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/cranelift/publish-all.sh b/cranelift/publish-all.sh index 6f5e45666c..0dd18f3616 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.48.0" +version="0.49.0" # Update all of the Cargo.toml files. # diff --git a/cranelift/reader/Cargo.toml b/cranelift/reader/Cargo.toml index e5f30be572..8083666125 100644 --- a/cranelift/reader/Cargo.toml +++ b/cranelift/reader/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift-reader" -version = "0.48.0" +version = "0.49.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 = "../cranelift-codegen", version = "0.48.0" } +cranelift-codegen = { path = "../cranelift-codegen", version = "0.49.0" } target-lexicon = "0.9" [badges] diff --git a/cranelift/serde/Cargo.toml b/cranelift/serde/Cargo.toml index da4852585e..a56b81a9d8 100644 --- a/cranelift/serde/Cargo.toml +++ b/cranelift/serde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-serde" -version = "0.48.0" +version = "0.49.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 = "../cranelift-codegen", version = "0.48.0" } -cranelift-reader = { path = "../cranelift-reader", version = "0.48.0" } +cranelift-codegen = { path = "../cranelift-codegen", version = "0.49.0" } +cranelift-reader = { path = "../cranelift-reader", version = "0.49.0" } [badges] maintenance = { status = "experimental" } diff --git a/cranelift/simplejit/Cargo.toml b/cranelift/simplejit/Cargo.toml index 17c9858a61..6889acbaac 100644 --- a/cranelift/simplejit/Cargo.toml +++ b/cranelift/simplejit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-simplejit" -version = "0.48.0" +version = "0.49.0" authors = ["The Cranelift Project Developers"] description = "A simple JIT library backed by Cranelift" repository = "https://github.com/CraneStation/cranelift" @@ -10,8 +10,8 @@ readme = "README.md" edition = "2018" [dependencies] -cranelift-module = { path = "../cranelift-module", version = "0.48.0" } -cranelift-native = { path = "../cranelift-native", version = "0.48.0" } +cranelift-module = { path = "../cranelift-module", version = "0.49.0" } +cranelift-native = { path = "../cranelift-native", version = "0.49.0" } region = "2.0.0" libc = { version = "0.2.42" } errno = "0.2.4" @@ -20,7 +20,7 @@ memmap = { version = "0.7.0", optional = true } [dependencies.cranelift-codegen] path = "../cranelift-codegen" -version = "0.48.0" +version = "0.49.0" default-features = false features = ["std"] @@ -32,9 +32,9 @@ selinux-fix = ['memmap'] default = [] [dev-dependencies] -cranelift = { path = "../cranelift-umbrella", version = "0.48.0" } -cranelift-frontend = { path = "../cranelift-frontend", version = "0.48.0" } -cranelift-entity = { path = "../cranelift-entity", version = "0.48.0" } +cranelift = { path = "../cranelift-umbrella", version = "0.49.0" } +cranelift-frontend = { path = "../cranelift-frontend", version = "0.49.0" } +cranelift-entity = { path = "../cranelift-entity", version = "0.49.0" } [badges] maintenance = { status = "experimental" } diff --git a/cranelift/umbrella/Cargo.toml b/cranelift/umbrella/Cargo.toml index ee7cb7ceca..e6749eb395 100644 --- a/cranelift/umbrella/Cargo.toml +++ b/cranelift/umbrella/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cranelift Project Developers"] name = "cranelift" -version = "0.48.0" +version = "0.49.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 = "../cranelift-codegen", version = "0.48.0", default-features = false } -cranelift-frontend = { path = "../cranelift-frontend", version = "0.48.0", default-features = false } +cranelift-codegen = { path = "../cranelift-codegen", version = "0.49.0", default-features = false } +cranelift-frontend = { path = "../cranelift-frontend", version = "0.49.0", default-features = false } [features] default = ["std"] diff --git a/cranelift/wasm/Cargo.toml b/cranelift/wasm/Cargo.toml index b9b89ef497..2274699820 100644 --- a/cranelift/wasm/Cargo.toml +++ b/cranelift/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-wasm" -version = "0.48.0" +version = "0.49.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.39.2", default-features = false } -cranelift-codegen = { path = "../cranelift-codegen", version = "0.48.0", default-features = false } -cranelift-entity = { path = "../cranelift-entity", version = "0.48.0" } -cranelift-frontend = { path = "../cranelift-frontend", version = "0.48.0", default-features = false } +cranelift-codegen = { path = "../cranelift-codegen", version = "0.49.0", default-features = false } +cranelift-entity = { path = "../cranelift-entity", version = "0.49.0" } +cranelift-frontend = { path = "../cranelift-frontend", version = "0.49.0", default-features = false } hashbrown = { version = "0.6", optional = true } log = { version = "0.4.6", default-features = false } serde = { version = "1.0.94", features = ["derive"], optional = true }