From 6cb03a873d145d37fa8bb4dbf09c1153aedb1068 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 23 Jul 2018 16:15:53 -0700 Subject: [PATCH] Bump version to 0.17.0-alpha --- cranelift/Cargo.toml | 22 +++++++++++----------- cranelift/publish-all.sh | 2 +- lib/codegen-meta/Cargo.toml | 2 +- lib/codegen/Cargo.toml | 6 +++--- lib/entity/Cargo.toml | 2 +- lib/faerie/Cargo.toml | 6 +++--- lib/filetests/Cargo.toml | 6 +++--- lib/frontend/Cargo.toml | 4 ++-- lib/module/Cargo.toml | 6 +++--- lib/native/Cargo.toml | 4 ++-- lib/reader/Cargo.toml | 4 ++-- lib/simplejit/Cargo.toml | 8 ++++---- lib/umbrella/Cargo.toml | 6 +++--- lib/wasm/Cargo.toml | 6 +++--- 14 files changed, 42 insertions(+), 42 deletions(-) diff --git a/cranelift/Cargo.toml b/cranelift/Cargo.toml index 982687738e..5eab8a1876 100644 --- a/cranelift/Cargo.toml +++ b/cranelift/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cranelift-tools" authors = ["The Cranelift Project Developers"] -version = "0.16.1" +version = "0.17.0-alpha" description = "Binaries for testing the Cranelift libraries" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -14,16 +14,16 @@ path = "src/clif-util.rs" [dependencies] cfg-if = "0.1" -cranelift-codegen = { path = "lib/codegen", version = "0.16.1" } -cranelift-reader = { path = "lib/reader", version = "0.16.1" } -cranelift-frontend = { path = "lib/frontend", version = "0.16.1" } -cranelift-wasm = { path = "lib/wasm", version = "0.16.1", optional = true } -cranelift-native = { path = "lib/native", version = "0.16.1" } -cranelift-filetests = { path = "lib/filetests", version = "0.16.1" } -cranelift-module = { path = "lib/module", version = "0.16.1" } -cranelift-faerie = { path = "lib/faerie", version = "0.16.1" } -cranelift-simplejit = { path = "lib/simplejit", version = "0.16.1" } -cranelift = { path = "lib/umbrella", version = "0.16.1" } +cranelift-codegen = { path = "lib/codegen", version = "0.17.0-alpha" } +cranelift-reader = { path = "lib/reader", version = "0.17.0-alpha" } +cranelift-frontend = { path = "lib/frontend", version = "0.17.0-alpha" } +cranelift-wasm = { path = "lib/wasm", version = "0.17.0-alpha", optional = true } +cranelift-native = { path = "lib/native", version = "0.17.0-alpha" } +cranelift-filetests = { path = "lib/filetests", version = "0.17.0-alpha" } +cranelift-module = { path = "lib/module", version = "0.17.0-alpha" } +cranelift-faerie = { path = "lib/faerie", version = "0.17.0-alpha" } +cranelift-simplejit = { path = "lib/simplejit", version = "0.17.0-alpha" } +cranelift = { path = "lib/umbrella", version = "0.17.0-alpha" } filecheck = "0.3.0" docopt = "1" serde = "1.0.8" diff --git a/cranelift/publish-all.sh b/cranelift/publish-all.sh index 52a2ecd496..4da855b96c 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.16.1" +version="0.17.0-alpha" # Update all of the Cargo.toml files. # diff --git a/lib/codegen-meta/Cargo.toml b/lib/codegen-meta/Cargo.toml index 9d75e91ce8..623f11d005 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.15.0" +version = "0.17.0-alpha" description = "Metaprogram for cranelift-codegen code generator library" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" diff --git a/lib/codegen/Cargo.toml b/lib/codegen/Cargo.toml index 025096be5e..4f3cda4cad 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.16.1" +version = "0.17.0-alpha" description = "Low-level code generator library" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -11,7 +11,7 @@ keywords = ["compile", "compiler", "jit"] build = "build.rs" [dependencies] -cranelift-entity = { path = "../entity", version = "0.16.1", default-features = false } +cranelift-entity = { path = "../entity", version = "0.17.0-alpha", 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 } @@ -22,7 +22,7 @@ target-lexicon = { version = "0.0.3", default-features = false } # accomodated in `tests`. [build-dependencies] -cranelift-codegen-meta = { path = "../codegen-meta", version = "0.15.0" } +cranelift-codegen-meta = { path = "../codegen-meta", version = "0.17.0-alpha" } [features] # The "std" feature enables use of libstd. The "core" feature enables use diff --git a/lib/entity/Cargo.toml b/lib/entity/Cargo.toml index cb52df1f89..fa071e7d64 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.16.1" +version = "0.17.0-alpha" 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 1f3f9d538c..c2c118f688 100644 --- a/lib/faerie/Cargo.toml +++ b/lib/faerie/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-faerie" -version = "0.16.1" +version = "0.17.0-alpha" authors = ["The Cranelift Project Developers"] description = "Emit Cranelift output to native object files with Faerie" repository = "https://github.com/CraneStation/cranelift" @@ -9,8 +9,8 @@ license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.16.1" } -cranelift-module = { path = "../module", version = "0.16.1" } +cranelift-codegen = { path = "../codegen", version = "0.17.0-alpha" } +cranelift-module = { path = "../module", version = "0.17.0-alpha" } faerie = "0.4.4" goblin = "0.0.17" failure = "0.1.1" diff --git a/lib/filetests/Cargo.toml b/lib/filetests/Cargo.toml index de65853d4c..bb26ad720e 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.16.1" +version = "0.17.0-alpha" 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" @@ -9,7 +9,7 @@ repository = "https://github.com/CraneStation/cranelift" publish = false [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.16.1" } -cranelift-reader = { path = "../reader", version = "0.16.1" } +cranelift-codegen = { path = "../codegen", version = "0.17.0-alpha" } +cranelift-reader = { path = "../reader", version = "0.17.0-alpha" } filecheck = "0.3.0" num_cpus = "1.8.0" diff --git a/lib/frontend/Cargo.toml b/lib/frontend/Cargo.toml index 2bba26a18d..36a9818ce2 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.16.1" +version = "0.17.0-alpha" description = "Cranelift IR builder helper" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -9,7 +9,7 @@ repository = "https://github.com/CraneStation/cranelift" readme = "README.md" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.16.1", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.17.0-alpha", default-features = false } [features] default = ["std"] diff --git a/lib/module/Cargo.toml b/lib/module/Cargo.toml index 226d798fbd..d7760eefde 100644 --- a/lib/module/Cargo.toml +++ b/lib/module/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-module" -version = "0.16.1" +version = "0.17.0-alpha" authors = ["The Cranelift Project Developers"] description = "Support for linking functions and data with Cranelift" repository = "https://github.com/CraneStation/cranelift" @@ -9,8 +9,8 @@ license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.16.1", default-features = false } -cranelift-entity = { path = "../entity", version = "0.16.1", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.17.0-alpha", default-features = false } +cranelift-entity = { path = "../entity", version = "0.17.0-alpha", default-features = false } hashmap_core = { version = "0.1.9", optional = true } failure = "0.1.1" diff --git a/lib/native/Cargo.toml b/lib/native/Cargo.toml index 40e635ecf4..abb216cafb 100644 --- a/lib/native/Cargo.toml +++ b/lib/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-native" -version = "0.16.1" +version = "0.17.0-alpha" authors = ["The Cranelift Project Developers"] description = "Support for targeting the host with Cranelift" repository = "https://github.com/CraneStation/cranelift" @@ -8,7 +8,7 @@ license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.16.1", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.17.0-alpha", default-features = false } target-lexicon = { version = "0.0.3", default-features = false } [target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies] diff --git a/lib/reader/Cargo.toml b/lib/reader/Cargo.toml index 19a80c77cb..aea061cf09 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.16.1" +version = "0.17.0-alpha" description = "Cranelift textual IR reader" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -9,7 +9,7 @@ repository = "https://github.com/CraneStation/cranelift" readme = "README.md" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.16.1" } +cranelift-codegen = { path = "../codegen", version = "0.17.0-alpha" } target-lexicon = "0.0.3" [badges] diff --git a/lib/simplejit/Cargo.toml b/lib/simplejit/Cargo.toml index 8ee0532dbf..c6174ba89f 100644 --- a/lib/simplejit/Cargo.toml +++ b/lib/simplejit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-simplejit" -version = "0.16.1" +version = "0.17.0-alpha" authors = ["The Cranelift Project Developers"] description = "A simple JIT library backed by Cranelift" repository = "https://github.com/CraneStation/cranelift" @@ -9,9 +9,9 @@ license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.16.1", default-features = false } -cranelift-module = { path = "../module", version = "0.16.1", default-features = false } -cranelift-native = { path = "../native", version = "0.16.1", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.17.0-alpha", default-features = false } +cranelift-module = { path = "../module", version = "0.17.0-alpha", default-features = false } +cranelift-native = { path = "../native", version = "0.17.0-alpha", default-features = false } region = "0.3.0" libc = { version = "0.2.42", default-features = false } errno = "0.2.4" diff --git a/lib/umbrella/Cargo.toml b/lib/umbrella/Cargo.toml index ea50e5b730..4a974f5fdb 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.16.1" +version = "0.17.0-alpha" description = "Umbrella for commonly-used cranelift crates" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" @@ -10,8 +10,8 @@ readme = "README.md" keywords = ["compile", "compiler", "jit"] [dependencies] -cranelift-codegen = { path = "../codegen", version = "0.16.1", default-features = false } -cranelift-frontend = { path = "../frontend", version = "0.16.1", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.17.0-alpha", default-features = false } +cranelift-frontend = { path = "../frontend", version = "0.17.0-alpha", default-features = false } [features] default = ["std"] diff --git a/lib/wasm/Cargo.toml b/lib/wasm/Cargo.toml index bc745d4fff..bc5a8ddd8c 100644 --- a/lib/wasm/Cargo.toml +++ b/lib/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cranelift-wasm" -version = "0.16.1" +version = "0.17.0-alpha" authors = ["The Cranelift Project Developers"] description = "Translator from WebAssembly to Cranelift IR" repository = "https://github.com/CraneStation/cranelift" @@ -10,8 +10,8 @@ keywords = ["webassembly", "wasm"] [dependencies] wasmparser = { version = "0.17.2", default-features = false } -cranelift-codegen = { path = "../codegen", version = "0.16.1", default-features = false } -cranelift-frontend = { path = "../frontend", version = "0.16.1", default-features = false } +cranelift-codegen = { path = "../codegen", version = "0.17.0-alpha", default-features = false } +cranelift-frontend = { path = "../frontend", version = "0.17.0-alpha", 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 }