From 1f43ec09f3cea30f3eb4931ec8fdb43064d98fed Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 17 Apr 2018 10:58:33 -0700 Subject: [PATCH] Bump version to 0.5.0 --- cranelift/Cargo.toml | 22 +++++++++++----------- cranelift/publish-all.sh | 2 +- lib/codegen/Cargo.toml | 4 ++-- 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 +++--- 13 files changed, 40 insertions(+), 40 deletions(-) diff --git a/cranelift/Cargo.toml b/cranelift/Cargo.toml index 4ca0fa7760..9c4c1608ff 100644 --- a/cranelift/Cargo.toml +++ b/cranelift/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cretonne-tools" authors = ["The Cretonne Project Developers"] -version = "0.4.4" +version = "0.5.0" description = "Binaries for testing the Cretonne libraries" license = "Apache-2.0" documentation = "https://cretonne.readthedocs.io/" @@ -13,16 +13,16 @@ name = "cton-util" path = "src/cton-util.rs" [dependencies] -cretonne-codegen = { path = "lib/codegen", version = "0.4.4" } -cretonne-reader = { path = "lib/reader", version = "0.4.4" } -cretonne-frontend = { path = "lib/frontend", version = "0.4.4" } -cretonne-wasm = { path = "lib/wasm", version = "0.4.4" } -cretonne-native = { path = "lib/native", version = "0.4.4" } -cretonne-filetests = { path = "lib/filetests", version = "0.4.4" } -cretonne-module = { path = "lib/module", version = "0.4.4" } -cretonne-faerie = { path = "lib/faerie", version = "0.4.4" } -cretonne-simplejit = { path = "lib/simplejit", version = "0.4.4" } -cretonne = { path = "lib/umbrella", version = "0.4.4" } +cretonne-codegen = { path = "lib/codegen", version = "0.5.0" } +cretonne-reader = { path = "lib/reader", version = "0.5.0" } +cretonne-frontend = { path = "lib/frontend", version = "0.5.0" } +cretonne-wasm = { path = "lib/wasm", version = "0.5.0" } +cretonne-native = { path = "lib/native", version = "0.5.0" } +cretonne-filetests = { path = "lib/filetests", version = "0.5.0" } +cretonne-module = { path = "lib/module", version = "0.5.0" } +cretonne-faerie = { path = "lib/faerie", version = "0.5.0" } +cretonne-simplejit = { path = "lib/simplejit", version = "0.5.0" } +cretonne = { path = "lib/umbrella", version = "0.5.0" } filecheck = "0.2.1" docopt = "0.8.0" serde = "1.0.8" diff --git a/cranelift/publish-all.sh b/cranelift/publish-all.sh index 108d8055c2..a67d27f873 100755 --- a/cranelift/publish-all.sh +++ b/cranelift/publish-all.sh @@ -4,7 +4,7 @@ cd $(dirname "$0") topdir="$(pwd)" # All the cretonne-* crates have the same version number -version="0.4.4" +version="0.5.0" # Update all of the Cargo.toml files. # diff --git a/lib/codegen/Cargo.toml b/lib/codegen/Cargo.toml index 87dd016a21..4aaeccee7b 100644 --- a/lib/codegen/Cargo.toml +++ b/lib/codegen/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cretonne Project Developers"] name = "cretonne-codegen" -version = "0.4.4" +version = "0.5.0" description = "Low-level code generator library" license = "Apache-2.0" documentation = "https://cretonne.readthedocs.io/" @@ -11,7 +11,7 @@ keywords = ["compile", "compiler", "jit"] build = "build.rs" [dependencies] -cretonne-entity = { path = "../entity", version = "0.4.4" } +cretonne-entity = { path = "../entity", version = "0.5.0" } # It is a goal of the cretonne-codegen crate to have minimal external dependencies. # Please don't add any unless they are essential to the task of creating binary # machine code. Integration tests that need external dependencies can be diff --git a/lib/entity/Cargo.toml b/lib/entity/Cargo.toml index d93220fbe8..c7c6b0dde0 100644 --- a/lib/entity/Cargo.toml +++ b/lib/entity/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cretonne Project Developers"] name = "cretonne-entity" -version = "0.4.4" +version = "0.5.0" description = "Data structures using entity references as mapping keys" license = "Apache-2.0" documentation = "https://cretonne.readthedocs.io/" diff --git a/lib/faerie/Cargo.toml b/lib/faerie/Cargo.toml index 32434077f7..a0e1effeea 100644 --- a/lib/faerie/Cargo.toml +++ b/lib/faerie/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cretonne-faerie" -version = "0.4.4" +version = "0.5.0" authors = ["The Cretonne Project Developers"] description = "Emit Cretonne output to native object files with Faerie" repository = "https://github.com/Cretonne/cretonne" @@ -9,8 +9,8 @@ license = "Apache-2.0" readme = "README.md" [dependencies] -cretonne-codegen = { path = "../codegen", version = "0.4.4" } -cretonne-module = { path = "../module", version = "0.4.4" } +cretonne-codegen = { path = "../codegen", version = "0.5.0" } +cretonne-module = { path = "../module", version = "0.5.0" } faerie = "0.1.0" goblin = "0.0.14" failure = "0.1.1" diff --git a/lib/filetests/Cargo.toml b/lib/filetests/Cargo.toml index 1059a7a12a..2ab50d0ebd 100644 --- a/lib/filetests/Cargo.toml +++ b/lib/filetests/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cretonne-filetests" authors = ["The Cretonne Project Developers"] -version = "0.4.4" +version = "0.5.0" description = "Test driver and implementations of the filetest commands" license = "Apache-2.0" documentation = "http://cretonne.readthedocs.io/en/latest/testing.html#file-tests" @@ -9,7 +9,7 @@ repository = "https://github.com/cretonne/cretonne" publish = false [dependencies] -cretonne-codegen = { path = "../codegen", version = "0.4.4" } -cretonne-reader = { path = "../reader", version = "0.4.4" } +cretonne-codegen = { path = "../codegen", version = "0.5.0" } +cretonne-reader = { path = "../reader", version = "0.5.0" } filecheck = "0.3.0" num_cpus = "1.8.0" diff --git a/lib/frontend/Cargo.toml b/lib/frontend/Cargo.toml index 1c2b86d266..03752d5689 100644 --- a/lib/frontend/Cargo.toml +++ b/lib/frontend/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cretonne Project Developers"] name = "cretonne-frontend" -version = "0.4.4" +version = "0.5.0" description = "Cretonne IR builder helper" license = "Apache-2.0" documentation = "https://cretonne.readthedocs.io/" @@ -9,7 +9,7 @@ repository = "https://github.com/cretonne/cretonne" readme = "README.md" [dependencies] -cretonne-codegen = { path = "../codegen", version = "0.4.4" } +cretonne-codegen = { path = "../codegen", version = "0.5.0" } [badges] maintenance = { status = "experimental" } diff --git a/lib/module/Cargo.toml b/lib/module/Cargo.toml index 04e7b6e4b6..f43fde30a7 100644 --- a/lib/module/Cargo.toml +++ b/lib/module/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cretonne-module" -version = "0.4.4" +version = "0.5.0" authors = ["The Cretonne Project Developers"] description = "Support for linking functions and data with Cretonne" repository = "https://github.com/Cretonne/cretonne" @@ -9,8 +9,8 @@ license = "Apache-2.0" readme = "README.md" [dependencies] -cretonne-codegen = { path = "../codegen", version = "0.4.4" } -cretonne-entity = { path = "../entity", version = "0.4.4" } +cretonne-codegen = { path = "../codegen", version = "0.5.0" } +cretonne-entity = { path = "../entity", version = "0.5.0" } [badges] maintenance = { status = "experimental" } diff --git a/lib/native/Cargo.toml b/lib/native/Cargo.toml index 191e9325b5..265629044e 100644 --- a/lib/native/Cargo.toml +++ b/lib/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cretonne-native" -version = "0.4.4" +version = "0.5.0" authors = ["The Cretonne Project Developers"] description = "Support for targeting the host with Cretonne" repository = "https://github.com/cretonne/cretonne" @@ -8,7 +8,7 @@ license = "Apache-2.0" readme = "README.md" [dependencies] -cretonne-codegen = { path = "../codegen", version = "0.4.4" } +cretonne-codegen = { path = "../codegen", version = "0.5.0" } [target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies] raw-cpuid = "3.0.0" diff --git a/lib/reader/Cargo.toml b/lib/reader/Cargo.toml index b321da3e43..0b984515d9 100644 --- a/lib/reader/Cargo.toml +++ b/lib/reader/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cretonne Project Developers"] name = "cretonne-reader" -version = "0.4.4" +version = "0.5.0" description = "Cretonne textual IR reader" license = "Apache-2.0" documentation = "https://cretonne.readthedocs.io/" @@ -9,7 +9,7 @@ repository = "https://github.com/cretonne/cretonne" readme = "README.md" [dependencies] -cretonne-codegen = { path = "../codegen", version = "0.4.4" } +cretonne-codegen = { path = "../codegen", version = "0.5.0" } [badges] maintenance = { status = "experimental" } diff --git a/lib/simplejit/Cargo.toml b/lib/simplejit/Cargo.toml index edc87d8b64..699212afc0 100644 --- a/lib/simplejit/Cargo.toml +++ b/lib/simplejit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cretonne-simplejit" -version = "0.4.4" +version = "0.5.0" authors = ["The Cretonne Project Developers"] description = "A simple JIT library backed by Cretonne" repository = "https://github.com/Cretonne/cretonne" @@ -9,9 +9,9 @@ license = "Apache-2.0" readme = "README.md" [dependencies] -cretonne-codegen = { path = "../codegen", version = "0.4.4" } -cretonne-module = { path = "../module", version = "0.4.4" } -cretonne-native = { path = "../native", version = "0.4.4" } +cretonne-codegen = { path = "../codegen", version = "0.5.0" } +cretonne-module = { path = "../module", version = "0.5.0" } +cretonne-native = { path = "../native", version = "0.5.0" } region = "0.2.0" libc = "0.2.40" errno = "0.2.3" diff --git a/lib/umbrella/Cargo.toml b/lib/umbrella/Cargo.toml index d1f7f95786..fc89536394 100644 --- a/lib/umbrella/Cargo.toml +++ b/lib/umbrella/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["The Cretonne Project Developers"] name = "cretonne" -version = "0.4.4" +version = "0.5.0" description = "Umbrella for commonly-used cretonne crates" license = "Apache-2.0" documentation = "https://cretonne.readthedocs.io/" @@ -10,8 +10,8 @@ readme = "README.md" keywords = ["compile", "compiler", "jit"] [dependencies] -cretonne-codegen = { path = "../codegen", version = "0.4.4" } -cretonne-frontend = { path = "../frontend", version = "0.4.4" } +cretonne-codegen = { path = "../codegen", version = "0.5.0" } +cretonne-frontend = { path = "../frontend", version = "0.5.0" } [badges] maintenance = { status = "experimental" } diff --git a/lib/wasm/Cargo.toml b/lib/wasm/Cargo.toml index fbe7de7126..49644f7746 100644 --- a/lib/wasm/Cargo.toml +++ b/lib/wasm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cretonne-wasm" -version = "0.4.4" +version = "0.5.0" authors = ["The Cretonne Project Developers"] description = "Translator from WebAssembly to Cretonne IR" repository = "https://github.com/cretonne/cretonne" @@ -10,8 +10,8 @@ keywords = ["webassembly", "wasm"] [dependencies] wasmparser = "0.15.1" -cretonne-codegen = { path = "../codegen", version = "0.4.4" } -cretonne-frontend = { path = "../frontend", version = "0.4.4" } +cretonne-codegen = { path = "../codegen", version = "0.5.0" } +cretonne-frontend = { path = "../frontend", version = "0.5.0" } [dev-dependencies] tempdir = "0.3.5"