Bump version to 0.32.0

This commit is contained in:
Dan Gohman
2019-07-02 12:27:39 -07:00
parent f163050c9a
commit b35227b417
17 changed files with 60 additions and 60 deletions

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "cranelift-tools" name = "cranelift-tools"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
version = "0.31.0" version = "0.32.0"
description = "Binaries for testing the Cranelift libraries" description = "Binaries for testing the Cranelift libraries"
license = "Apache-2.0 WITH LLVM-exception" license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/" documentation = "https://cranelift.readthedocs.io/"
@@ -19,19 +19,19 @@ path = "src/clif-util.rs"
[dependencies] [dependencies]
cfg-if = "0.1" cfg-if = "0.1"
cranelift-codegen = { path = "cranelift-codegen", version = "0.31.0" } cranelift-codegen = { path = "cranelift-codegen", version = "0.32.0" }
cranelift-entity = { path = "cranelift-entity", version = "0.31.0" } cranelift-entity = { path = "cranelift-entity", version = "0.32.0" }
cranelift-reader = { path = "cranelift-reader", version = "0.31.0" } cranelift-reader = { path = "cranelift-reader", version = "0.32.0" }
cranelift-frontend = { path = "cranelift-frontend", version = "0.31.0" } cranelift-frontend = { path = "cranelift-frontend", version = "0.32.0" }
cranelift-serde = { path = "cranelift-serde", version = "0.31.0", optional = true } cranelift-serde = { path = "cranelift-serde", version = "0.32.0", optional = true }
cranelift-wasm = { path = "cranelift-wasm", version = "0.31.0", optional = true } cranelift-wasm = { path = "cranelift-wasm", version = "0.32.0", optional = true }
cranelift-native = { path = "cranelift-native", version = "0.31.0" } cranelift-native = { path = "cranelift-native", version = "0.32.0" }
cranelift-filetests = { path = "cranelift-filetests", version = "0.31.0" } cranelift-filetests = { path = "cranelift-filetests", version = "0.32.0" }
cranelift-module = { path = "cranelift-module", version = "0.31.0" } cranelift-module = { path = "cranelift-module", version = "0.32.0" }
cranelift-faerie = { path = "cranelift-faerie", version = "0.31.0" } cranelift-faerie = { path = "cranelift-faerie", version = "0.32.0" }
cranelift-simplejit = { path = "cranelift-simplejit", version = "0.31.0" } cranelift-simplejit = { path = "cranelift-simplejit", version = "0.32.0" }
cranelift-preopt = { path = "cranelift-preopt", version = "0.31.0" } cranelift-preopt = { path = "cranelift-preopt", version = "0.32.0" }
cranelift = { path = "cranelift-umbrella", version = "0.31.0" } cranelift = { path = "cranelift-umbrella", version = "0.32.0" }
filecheck = "0.4.0" filecheck = "0.4.0"
clap = "2.32.0" clap = "2.32.0"
serde = "1.0.8" serde = "1.0.8"

View File

@@ -1,7 +1,7 @@
[package] [package]
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
name = "cranelift-bforest" name = "cranelift-bforest"
version = "0.31.0" version = "0.32.0"
description = "A forest of B+-trees" description = "A forest of B+-trees"
license = "Apache-2.0 WITH LLVM-exception" license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/" documentation = "https://cranelift.readthedocs.io/"
@@ -12,7 +12,7 @@ keywords = ["btree", "forest", "set", "map"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cranelift-entity = { path = "../cranelift-entity", version = "0.31.0", default-features = false } cranelift-entity = { path = "../cranelift-entity", version = "0.32.0", default-features = false }
[features] [features]
default = ["std"] default = ["std"]

View File

@@ -1,7 +1,7 @@
[package] [package]
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
name = "cranelift-codegen" name = "cranelift-codegen"
version = "0.31.0" version = "0.32.0"
description = "Low-level code generator library" description = "Low-level code generator library"
license = "Apache-2.0 WITH LLVM-exception" license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/" documentation = "https://cranelift.readthedocs.io/"
@@ -13,8 +13,8 @@ build = "build.rs"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cranelift-entity = { path = "../cranelift-entity", version = "0.31.0", default-features = false } cranelift-entity = { path = "../cranelift-entity", version = "0.32.0", default-features = false }
cranelift-bforest = { path = "../cranelift-bforest", version = "0.31.0", default-features = false } cranelift-bforest = { path = "../cranelift-bforest", version = "0.32.0", default-features = false }
failure = { version = "0.1.1", default-features = false, features = ["derive"] } failure = { version = "0.1.1", default-features = false, features = ["derive"] }
failure_derive = { version = "0.1.1", default-features = false } failure_derive = { version = "0.1.1", default-features = false }
hashmap_core = { version = "0.1.9", optional = true } hashmap_core = { version = "0.1.9", optional = true }
@@ -26,7 +26,7 @@ log = { version = "0.4.6", default-features = false }
# accomodated in `tests`. # accomodated in `tests`.
[build-dependencies] [build-dependencies]
cranelift-codegen-meta = { path = "meta", version = "0.31.0", default-features = false } cranelift-codegen-meta = { path = "meta", version = "0.32.0", default-features = false }
[features] [features]
default = ["std", "x86", "arm32", "arm64", "riscv"] default = ["std", "x86", "arm32", "arm64", "riscv"]

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "cranelift-codegen-meta" name = "cranelift-codegen-meta"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
version = "0.31.0" version = "0.32.0"
description = "Metaprogram for cranelift-codegen code generator library" description = "Metaprogram for cranelift-codegen code generator library"
license = "Apache-2.0 WITH LLVM-exception" license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/CraneStation/cranelift" repository = "https://github.com/CraneStation/cranelift"
@@ -9,7 +9,7 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cranelift-entity = { path = "../../cranelift-entity", version = "0.31.0", default-features = false } cranelift-entity = { path = "../../cranelift-entity", version = "0.32.0", default-features = false }
[badges] [badges]
maintenance = { status = "experimental" } maintenance = { status = "experimental" }

View File

@@ -1,7 +1,7 @@
[package] [package]
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
name = "cranelift-entity" name = "cranelift-entity"
version = "0.31.0" version = "0.32.0"
description = "Data structures using entity references as mapping keys" description = "Data structures using entity references as mapping keys"
license = "Apache-2.0 WITH LLVM-exception" license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/" documentation = "https://cranelift.readthedocs.io/"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "cranelift-faerie" name = "cranelift-faerie"
version = "0.31.0" version = "0.32.0"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
description = "Emit Cranelift output to native object files with Faerie" description = "Emit Cranelift output to native object files with Faerie"
repository = "https://github.com/CraneStation/cranelift" repository = "https://github.com/CraneStation/cranelift"
@@ -10,8 +10,8 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.31.0" } cranelift-codegen = { path = "../cranelift-codegen", version = "0.32.0" }
cranelift-module = { path = "../cranelift-module", version = "0.31.0" } cranelift-module = { path = "../cranelift-module", version = "0.32.0" }
faerie = "0.10.0" faerie = "0.10.0"
goblin = "0.0.22" goblin = "0.0.22"
failure = "0.1.2" failure = "0.1.2"

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "cranelift-filetests" name = "cranelift-filetests"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
version = "0.31.0" version = "0.32.0"
description = "Test driver and implementations of the filetest commands" description = "Test driver and implementations of the filetest commands"
license = "Apache-2.0 WITH LLVM-exception" license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/en/latest/testing.html#file-tests" documentation = "https://cranelift.readthedocs.io/en/latest/testing.html#file-tests"
@@ -10,9 +10,9 @@ publish = false
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.31.0", features = ["testing_hooks"] } cranelift-codegen = { path = "../cranelift-codegen", version = "0.32.0", features = ["testing_hooks"] }
cranelift-reader = { path = "../cranelift-reader", version = "0.31.0" } cranelift-reader = { path = "../cranelift-reader", version = "0.32.0" }
cranelift-preopt = { path = "../cranelift-preopt", version = "0.31.0" } cranelift-preopt = { path = "../cranelift-preopt", version = "0.32.0" }
file-per-thread-logger = "0.1.2" file-per-thread-logger = "0.1.2"
filecheck = "0.4.0" filecheck = "0.4.0"
num_cpus = "1.8.0" num_cpus = "1.8.0"

View File

@@ -1,7 +1,7 @@
[package] [package]
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
name = "cranelift-frontend" name = "cranelift-frontend"
version = "0.31.0" version = "0.32.0"
description = "Cranelift IR builder helper" description = "Cranelift IR builder helper"
license = "Apache-2.0 WITH LLVM-exception" license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/" documentation = "https://cranelift.readthedocs.io/"
@@ -11,7 +11,7 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.31.0", default-features = false } cranelift-codegen = { path = "../cranelift-codegen", version = "0.32.0", default-features = false }
target-lexicon = { version = "0.4.0", default-features = false } target-lexicon = { version = "0.4.0", default-features = false }
log = { version = "0.4.6", default-features = false } log = { version = "0.4.6", default-features = false }
hashmap_core = { version = "0.1.9", optional = true } hashmap_core = { version = "0.1.9", optional = true }

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "cranelift-module" name = "cranelift-module"
version = "0.31.0" version = "0.32.0"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
description = "Support for linking functions and data with Cranelift" description = "Support for linking functions and data with Cranelift"
repository = "https://github.com/CraneStation/cranelift" repository = "https://github.com/CraneStation/cranelift"
@@ -11,8 +11,8 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.31.0", default-features = false } cranelift-codegen = { path = "../cranelift-codegen", version = "0.32.0", default-features = false }
cranelift-entity = { path = "../cranelift-entity", version = "0.31.0", default-features = false } cranelift-entity = { path = "../cranelift-entity", version = "0.32.0", default-features = false }
hashmap_core = { version = "0.1.9", optional = true } hashmap_core = { version = "0.1.9", optional = true }
failure = { version = "0.1.1", default-features = false } failure = { version = "0.1.1", default-features = false }
log = { version = "0.4.6", default-features = false } log = { version = "0.4.6", default-features = false }

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "cranelift-native" name = "cranelift-native"
version = "0.31.0" version = "0.32.0"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
description = "Support for targeting the host with Cranelift" description = "Support for targeting the host with Cranelift"
repository = "https://github.com/CraneStation/cranelift" repository = "https://github.com/CraneStation/cranelift"
@@ -10,7 +10,7 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.31.0", default-features = false } cranelift-codegen = { path = "../cranelift-codegen", version = "0.32.0", default-features = false }
target-lexicon = { version = "0.4.0", default-features = false } target-lexicon = { version = "0.4.0", default-features = false }
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies] [target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]

View File

@@ -1,7 +1,7 @@
[package] [package]
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
name = "cranelift-preopt" name = "cranelift-preopt"
version = "0.31.0" version = "0.32.0"
description = "Support for optimizations in Cranelift" description = "Support for optimizations in Cranelift"
license = "Apache-2.0 WITH LLVM-exception" license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/" documentation = "https://cranelift.readthedocs.io/"
@@ -12,8 +12,8 @@ keywords = ["optimize", "compile", "compiler", "jit"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.31.0", default-features = false } cranelift-codegen = { path = "../cranelift-codegen", version = "0.32.0", default-features = false }
cranelift-entity = { path = "../cranelift-entity", version = "0.31.0", default-features = false } cranelift-entity = { path = "../cranelift-entity", version = "0.32.0", default-features = false }
# This is commented out because it doesn't build on Rust 1.25.0, which # This is commented out because it doesn't build on Rust 1.25.0, which
# cranelift currently supports. # cranelift currently supports.
# rustc_apfloat = { version = "0.1.2", default-features = false } # rustc_apfloat = { version = "0.1.2", default-features = false }

View File

@@ -9,7 +9,7 @@ topdir=$(dirname "$0")
cd "$topdir" cd "$topdir"
# All the cranelift-* crates have the same version number # All the cranelift-* crates have the same version number
version="0.31.0" version="0.32.0"
# Update all of the Cargo.toml files. # Update all of the Cargo.toml files.
# #

View File

@@ -1,7 +1,7 @@
[package] [package]
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
name = "cranelift-reader" name = "cranelift-reader"
version = "0.31.0" version = "0.32.0"
description = "Cranelift textual IR reader" description = "Cranelift textual IR reader"
license = "Apache-2.0 WITH LLVM-exception" license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/" documentation = "https://cranelift.readthedocs.io/"
@@ -10,7 +10,7 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.31.0" } cranelift-codegen = { path = "../cranelift-codegen", version = "0.32.0" }
target-lexicon = "0.4.0" target-lexicon = "0.4.0"
[badges] [badges]

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "cranelift-serde" name = "cranelift-serde"
version = "0.31.0" version = "0.32.0"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
description = "Serializer/Deserializer for Cranelift IR" description = "Serializer/Deserializer for Cranelift IR"
repository = "https://github.com/CraneStation/cranelift" repository = "https://github.com/CraneStation/cranelift"
@@ -18,8 +18,8 @@ clap = "2.32.0"
serde = "1.0.8" serde = "1.0.8"
serde_derive = "1.0.75" serde_derive = "1.0.75"
serde_json = "1.0.26" serde_json = "1.0.26"
cranelift-codegen = { path = "../cranelift-codegen", version = "0.31.0" } cranelift-codegen = { path = "../cranelift-codegen", version = "0.32.0" }
cranelift-reader = { path = "../cranelift-reader", version = "0.31.0" } cranelift-reader = { path = "../cranelift-reader", version = "0.32.0" }
[badges] [badges]
maintenance = { status = "experimental" } maintenance = { status = "experimental" }

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "cranelift-simplejit" name = "cranelift-simplejit"
version = "0.31.0" version = "0.32.0"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
description = "A simple JIT library backed by Cranelift" description = "A simple JIT library backed by Cranelift"
repository = "https://github.com/CraneStation/cranelift" repository = "https://github.com/CraneStation/cranelift"
@@ -10,9 +10,9 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.31.0" } cranelift-codegen = { path = "../cranelift-codegen", version = "0.32.0" }
cranelift-module = { path = "../cranelift-module", version = "0.31.0" } cranelift-module = { path = "../cranelift-module", version = "0.32.0" }
cranelift-native = { path = "../cranelift-native", version = "0.31.0" } cranelift-native = { path = "../cranelift-native", version = "0.32.0" }
region = "2.0.0" region = "2.0.0"
libc = { version = "0.2.42" } libc = { version = "0.2.42" }
errno = "0.2.4" errno = "0.2.4"
@@ -22,9 +22,9 @@ target-lexicon = { version = "0.4.0" }
winapi = { version = "0.3", features = ["winbase", "memoryapi"] } winapi = { version = "0.3", features = ["winbase", "memoryapi"] }
[dev-dependencies] [dev-dependencies]
cranelift = { path = "../cranelift-umbrella", version = "0.31.0" } cranelift = { path = "../cranelift-umbrella", version = "0.32.0" }
cranelift-frontend = { path = "../cranelift-frontend", version = "0.31.0" } cranelift-frontend = { path = "../cranelift-frontend", version = "0.32.0" }
cranelift-entity = { path = "../cranelift-entity", version = "0.31.0" } cranelift-entity = { path = "../cranelift-entity", version = "0.32.0" }
[badges] [badges]
maintenance = { status = "experimental" } maintenance = { status = "experimental" }

View File

@@ -1,7 +1,7 @@
[package] [package]
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
name = "cranelift" name = "cranelift"
version = "0.31.0" version = "0.32.0"
description = "Umbrella for commonly-used cranelift crates" description = "Umbrella for commonly-used cranelift crates"
license = "Apache-2.0 WITH LLVM-exception" license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/" documentation = "https://cranelift.readthedocs.io/"
@@ -12,8 +12,8 @@ keywords = ["compile", "compiler", "jit"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.31.0", default-features = false } cranelift-codegen = { path = "../cranelift-codegen", version = "0.32.0", default-features = false }
cranelift-frontend = { path = "../cranelift-frontend", version = "0.31.0", default-features = false } cranelift-frontend = { path = "../cranelift-frontend", version = "0.32.0", default-features = false }
[features] [features]
default = ["std"] default = ["std"]

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "cranelift-wasm" name = "cranelift-wasm"
version = "0.31.0" version = "0.32.0"
authors = ["The Cranelift Project Developers"] authors = ["The Cranelift Project Developers"]
description = "Translator from WebAssembly to Cranelift IR" description = "Translator from WebAssembly to Cranelift IR"
repository = "https://github.com/CraneStation/cranelift" repository = "https://github.com/CraneStation/cranelift"
@@ -12,9 +12,9 @@ edition = "2018"
[dependencies] [dependencies]
wasmparser = { version = "0.32.1", default-features = false } wasmparser = { version = "0.32.1", default-features = false }
cranelift-codegen = { path = "../cranelift-codegen", version = "0.31.0", default-features = false } cranelift-codegen = { path = "../cranelift-codegen", version = "0.32.0", default-features = false }
cranelift-entity = { path = "../cranelift-entity", version = "0.31.0", default-features = false } cranelift-entity = { path = "../cranelift-entity", version = "0.32.0", default-features = false }
cranelift-frontend = { path = "../cranelift-frontend", version = "0.31.0", default-features = false } cranelift-frontend = { path = "../cranelift-frontend", version = "0.32.0", default-features = false }
hashmap_core = { version = "0.1.9", optional = true } hashmap_core = { version = "0.1.9", optional = true }
failure = { version = "0.1.1", default-features = false, features = ["derive"] } failure = { version = "0.1.1", default-features = false, features = ["derive"] }
failure_derive = { version = "0.1.1", default-features = false } failure_derive = { version = "0.1.1", default-features = false }