Bump version to 0.17.0-alpha
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cranelift-tools"
|
name = "cranelift-tools"
|
||||||
authors = ["The Cranelift Project Developers"]
|
authors = ["The Cranelift Project Developers"]
|
||||||
version = "0.16.1"
|
version = "0.17.0-alpha"
|
||||||
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/"
|
||||||
@@ -14,16 +14,16 @@ path = "src/clif-util.rs"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cfg-if = "0.1"
|
cfg-if = "0.1"
|
||||||
cranelift-codegen = { path = "lib/codegen", version = "0.16.1" }
|
cranelift-codegen = { path = "lib/codegen", version = "0.17.0-alpha" }
|
||||||
cranelift-reader = { path = "lib/reader", version = "0.16.1" }
|
cranelift-reader = { path = "lib/reader", version = "0.17.0-alpha" }
|
||||||
cranelift-frontend = { path = "lib/frontend", version = "0.16.1" }
|
cranelift-frontend = { path = "lib/frontend", version = "0.17.0-alpha" }
|
||||||
cranelift-wasm = { path = "lib/wasm", version = "0.16.1", optional = true }
|
cranelift-wasm = { path = "lib/wasm", version = "0.17.0-alpha", optional = true }
|
||||||
cranelift-native = { path = "lib/native", version = "0.16.1" }
|
cranelift-native = { path = "lib/native", version = "0.17.0-alpha" }
|
||||||
cranelift-filetests = { path = "lib/filetests", version = "0.16.1" }
|
cranelift-filetests = { path = "lib/filetests", version = "0.17.0-alpha" }
|
||||||
cranelift-module = { path = "lib/module", version = "0.16.1" }
|
cranelift-module = { path = "lib/module", version = "0.17.0-alpha" }
|
||||||
cranelift-faerie = { path = "lib/faerie", version = "0.16.1" }
|
cranelift-faerie = { path = "lib/faerie", version = "0.17.0-alpha" }
|
||||||
cranelift-simplejit = { path = "lib/simplejit", version = "0.16.1" }
|
cranelift-simplejit = { path = "lib/simplejit", version = "0.17.0-alpha" }
|
||||||
cranelift = { path = "lib/umbrella", version = "0.16.1" }
|
cranelift = { path = "lib/umbrella", version = "0.17.0-alpha" }
|
||||||
filecheck = "0.3.0"
|
filecheck = "0.3.0"
|
||||||
docopt = "1"
|
docopt = "1"
|
||||||
serde = "1.0.8"
|
serde = "1.0.8"
|
||||||
|
|||||||
@@ -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.16.1"
|
version="0.17.0-alpha"
|
||||||
|
|
||||||
# Update all of the Cargo.toml files.
|
# Update all of the Cargo.toml files.
|
||||||
#
|
#
|
||||||
|
|||||||
@@ -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.15.0"
|
version = "0.17.0-alpha"
|
||||||
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"
|
||||||
documentation = "https://cranelift.readthedocs.io/"
|
documentation = "https://cranelift.readthedocs.io/"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["The Cranelift Project Developers"]
|
authors = ["The Cranelift Project Developers"]
|
||||||
name = "cranelift-codegen"
|
name = "cranelift-codegen"
|
||||||
version = "0.16.1"
|
version = "0.17.0-alpha"
|
||||||
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/"
|
||||||
@@ -11,7 +11,7 @@ keywords = ["compile", "compiler", "jit"]
|
|||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
||||||
[dependencies]
|
[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 = { 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 }
|
||||||
@@ -22,7 +22,7 @@ target-lexicon = { version = "0.0.3", default-features = false }
|
|||||||
# accomodated in `tests`.
|
# accomodated in `tests`.
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
cranelift-codegen-meta = { path = "../codegen-meta", version = "0.15.0" }
|
cranelift-codegen-meta = { path = "../codegen-meta", version = "0.17.0-alpha" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
# The "std" feature enables use of libstd. The "core" feature enables use
|
# The "std" feature enables use of libstd. The "core" feature enables use
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["The Cranelift Project Developers"]
|
authors = ["The Cranelift Project Developers"]
|
||||||
name = "cranelift-entity"
|
name = "cranelift-entity"
|
||||||
version = "0.16.1"
|
version = "0.17.0-alpha"
|
||||||
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/"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cranelift-faerie"
|
name = "cranelift-faerie"
|
||||||
version = "0.16.1"
|
version = "0.17.0-alpha"
|
||||||
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"
|
||||||
@@ -9,8 +9,8 @@ license = "Apache-2.0 WITH LLVM-exception"
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { path = "../codegen", version = "0.16.1" }
|
cranelift-codegen = { path = "../codegen", version = "0.17.0-alpha" }
|
||||||
cranelift-module = { path = "../module", version = "0.16.1" }
|
cranelift-module = { path = "../module", version = "0.17.0-alpha" }
|
||||||
faerie = "0.4.4"
|
faerie = "0.4.4"
|
||||||
goblin = "0.0.17"
|
goblin = "0.0.17"
|
||||||
failure = "0.1.1"
|
failure = "0.1.1"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cranelift-filetests"
|
name = "cranelift-filetests"
|
||||||
authors = ["The Cranelift Project Developers"]
|
authors = ["The Cranelift Project Developers"]
|
||||||
version = "0.16.1"
|
version = "0.17.0-alpha"
|
||||||
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"
|
||||||
@@ -9,7 +9,7 @@ repository = "https://github.com/CraneStation/cranelift"
|
|||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { path = "../codegen", version = "0.16.1" }
|
cranelift-codegen = { path = "../codegen", version = "0.17.0-alpha" }
|
||||||
cranelift-reader = { path = "../reader", version = "0.16.1" }
|
cranelift-reader = { path = "../reader", version = "0.17.0-alpha" }
|
||||||
filecheck = "0.3.0"
|
filecheck = "0.3.0"
|
||||||
num_cpus = "1.8.0"
|
num_cpus = "1.8.0"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["The Cranelift Project Developers"]
|
authors = ["The Cranelift Project Developers"]
|
||||||
name = "cranelift-frontend"
|
name = "cranelift-frontend"
|
||||||
version = "0.16.1"
|
version = "0.17.0-alpha"
|
||||||
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/"
|
||||||
@@ -9,7 +9,7 @@ repository = "https://github.com/CraneStation/cranelift"
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
[dependencies]
|
[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]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cranelift-module"
|
name = "cranelift-module"
|
||||||
version = "0.16.1"
|
version = "0.17.0-alpha"
|
||||||
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"
|
||||||
@@ -9,8 +9,8 @@ license = "Apache-2.0 WITH LLVM-exception"
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { path = "../codegen", 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.16.1", default-features = false }
|
cranelift-entity = { path = "../entity", version = "0.17.0-alpha", default-features = false }
|
||||||
hashmap_core = { version = "0.1.9", optional = true }
|
hashmap_core = { version = "0.1.9", optional = true }
|
||||||
failure = "0.1.1"
|
failure = "0.1.1"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cranelift-native"
|
name = "cranelift-native"
|
||||||
version = "0.16.1"
|
version = "0.17.0-alpha"
|
||||||
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"
|
||||||
@@ -8,7 +8,7 @@ license = "Apache-2.0 WITH LLVM-exception"
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
[dependencies]
|
[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-lexicon = { version = "0.0.3", 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]
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["The Cranelift Project Developers"]
|
authors = ["The Cranelift Project Developers"]
|
||||||
name = "cranelift-reader"
|
name = "cranelift-reader"
|
||||||
version = "0.16.1"
|
version = "0.17.0-alpha"
|
||||||
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/"
|
||||||
@@ -9,7 +9,7 @@ repository = "https://github.com/CraneStation/cranelift"
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { path = "../codegen", version = "0.16.1" }
|
cranelift-codegen = { path = "../codegen", version = "0.17.0-alpha" }
|
||||||
target-lexicon = "0.0.3"
|
target-lexicon = "0.0.3"
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cranelift-simplejit"
|
name = "cranelift-simplejit"
|
||||||
version = "0.16.1"
|
version = "0.17.0-alpha"
|
||||||
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"
|
||||||
@@ -9,9 +9,9 @@ license = "Apache-2.0 WITH LLVM-exception"
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { path = "../codegen", 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.16.1", default-features = false }
|
cranelift-module = { path = "../module", version = "0.17.0-alpha", default-features = false }
|
||||||
cranelift-native = { path = "../native", version = "0.16.1", default-features = false }
|
cranelift-native = { path = "../native", version = "0.17.0-alpha", default-features = false }
|
||||||
region = "0.3.0"
|
region = "0.3.0"
|
||||||
libc = { version = "0.2.42", default-features = false }
|
libc = { version = "0.2.42", default-features = false }
|
||||||
errno = "0.2.4"
|
errno = "0.2.4"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["The Cranelift Project Developers"]
|
authors = ["The Cranelift Project Developers"]
|
||||||
name = "cranelift"
|
name = "cranelift"
|
||||||
version = "0.16.1"
|
version = "0.17.0-alpha"
|
||||||
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/"
|
||||||
@@ -10,8 +10,8 @@ readme = "README.md"
|
|||||||
keywords = ["compile", "compiler", "jit"]
|
keywords = ["compile", "compiler", "jit"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { path = "../codegen", 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.16.1", default-features = false }
|
cranelift-frontend = { path = "../frontend", version = "0.17.0-alpha", default-features = false }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cranelift-wasm"
|
name = "cranelift-wasm"
|
||||||
version = "0.16.1"
|
version = "0.17.0-alpha"
|
||||||
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"
|
||||||
@@ -10,8 +10,8 @@ keywords = ["webassembly", "wasm"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmparser = { version = "0.17.2", default-features = false }
|
wasmparser = { version = "0.17.2", default-features = false }
|
||||||
cranelift-codegen = { path = "../codegen", 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.16.1", default-features = false }
|
cranelift-frontend = { path = "../frontend", version = "0.17.0-alpha", 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 }
|
||||||
|
|||||||
Reference in New Issue
Block a user