Bump version to 0.6.0

This commit is contained in:
Dan Gohman
2018-04-23 14:35:23 -07:00
parent 229b748f02
commit e356c742aa
13 changed files with 43 additions and 52 deletions

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "cretonne-tools" name = "cretonne-tools"
authors = ["The Cretonne Project Developers"] authors = ["The Cretonne Project Developers"]
version = "0.5.1" version = "0.6.0"
description = "Binaries for testing the Cretonne libraries" description = "Binaries for testing the Cretonne libraries"
license = "Apache-2.0" license = "Apache-2.0"
documentation = "https://cretonne.readthedocs.io/" documentation = "https://cretonne.readthedocs.io/"
@@ -13,16 +13,16 @@ name = "cton-util"
path = "src/cton-util.rs" path = "src/cton-util.rs"
[dependencies] [dependencies]
cretonne-codegen = { path = "lib/codegen", version = "0.5.1" } cretonne-codegen = { path = "lib/codegen", version = "0.6.0" }
cretonne-reader = { path = "lib/reader", version = "0.5.1" } cretonne-reader = { path = "lib/reader", version = "0.6.0" }
cretonne-frontend = { path = "lib/frontend", version = "0.5.1" } cretonne-frontend = { path = "lib/frontend", version = "0.6.0" }
cretonne-wasm = { path = "lib/wasm", version = "0.5.1" } cretonne-wasm = { path = "lib/wasm", version = "0.6.0" }
cretonne-native = { path = "lib/native", version = "0.5.1" } cretonne-native = { path = "lib/native", version = "0.6.0" }
cretonne-filetests = { path = "lib/filetests", version = "0.5.1" } cretonne-filetests = { path = "lib/filetests", version = "0.6.0" }
cretonne-module = { path = "lib/module", version = "0.5.1" } cretonne-module = { path = "lib/module", version = "0.6.0" }
cretonne-faerie = { path = "lib/faerie", version = "0.5.1" } cretonne-faerie = { path = "lib/faerie", version = "0.6.0" }
cretonne-simplejit = { path = "lib/simplejit", version = "0.5.1" } cretonne-simplejit = { path = "lib/simplejit", version = "0.6.0" }
cretonne = { path = "lib/umbrella", version = "0.5.1" } cretonne = { path = "lib/umbrella", version = "0.6.0" }
filecheck = "0.3.0" filecheck = "0.3.0"
docopt = "0.8.0" docopt = "0.8.0"
serde = "1.0.8" serde = "1.0.8"

View File

@@ -4,7 +4,7 @@ cd $(dirname "$0")
topdir="$(pwd)" topdir="$(pwd)"
# All the cretonne-* crates have the same version number # All the cretonne-* crates have the same version number
version="0.5.1" version="0.6.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 Cretonne Project Developers"] authors = ["The Cretonne Project Developers"]
name = "cretonne-codegen" name = "cretonne-codegen"
version = "0.5.1" version = "0.6.0"
description = "Low-level code generator library" description = "Low-level code generator library"
license = "Apache-2.0" license = "Apache-2.0"
documentation = "https://cretonne.readthedocs.io/" documentation = "https://cretonne.readthedocs.io/"
@@ -11,18 +11,15 @@ keywords = ["compile", "compiler", "jit"]
build = "build.rs" build = "build.rs"
[dependencies] [dependencies]
cretonne-entity = { path = "../entity", version = "0.5.1", default-features = false } cretonne-entity = { path = "../entity", version = "0.6.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.4", optional = true }
# It is a goal of the cretonne-codegen crate to have minimal external dependencies. # 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 # 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 # machine code. Integration tests that need external dependencies can be
# accomodated in `tests`. # accomodated in `tests`.
[dependencies.hashmap_core]
version = "0.1.1"
optional = true
[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
# of some minimal std-like replacement libraries. At least one of these two # of some minimal std-like replacement libraries. At least one of these two

View File

@@ -1,7 +1,7 @@
[package] [package]
authors = ["The Cretonne Project Developers"] authors = ["The Cretonne Project Developers"]
name = "cretonne-entity" name = "cretonne-entity"
version = "0.5.1" version = "0.6.0"
description = "Data structures using entity references as mapping keys" description = "Data structures using entity references as mapping keys"
license = "Apache-2.0" license = "Apache-2.0"
documentation = "https://cretonne.readthedocs.io/" documentation = "https://cretonne.readthedocs.io/"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "cretonne-faerie" name = "cretonne-faerie"
version = "0.5.1" version = "0.6.0"
authors = ["The Cretonne Project Developers"] authors = ["The Cretonne Project Developers"]
description = "Emit Cretonne output to native object files with Faerie" description = "Emit Cretonne output to native object files with Faerie"
repository = "https://github.com/cretonne/cretonne" repository = "https://github.com/cretonne/cretonne"
@@ -9,8 +9,8 @@ license = "Apache-2.0"
readme = "README.md" readme = "README.md"
[dependencies] [dependencies]
cretonne-codegen = { path = "../codegen", version = "0.5.1" } cretonne-codegen = { path = "../codegen", version = "0.6.0" }
cretonne-module = { path = "../module", version = "0.5.1" } cretonne-module = { path = "../module", version = "0.6.0" }
faerie = "0.2.0" faerie = "0.2.0"
goblin = "0.0.14" goblin = "0.0.14"
failure = "0.1.1" failure = "0.1.1"

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "cretonne-filetests" name = "cretonne-filetests"
authors = ["The Cretonne Project Developers"] authors = ["The Cretonne Project Developers"]
version = "0.5.1" version = "0.6.0"
description = "Test driver and implementations of the filetest commands" description = "Test driver and implementations of the filetest commands"
license = "Apache-2.0" license = "Apache-2.0"
documentation = "https://cretonne.readthedocs.io/en/latest/testing.html#file-tests" documentation = "https://cretonne.readthedocs.io/en/latest/testing.html#file-tests"
@@ -9,7 +9,7 @@ repository = "https://github.com/cretonne/cretonne"
publish = false publish = false
[dependencies] [dependencies]
cretonne-codegen = { path = "../codegen", version = "0.5.1" } cretonne-codegen = { path = "../codegen", version = "0.6.0" }
cretonne-reader = { path = "../reader", version = "0.5.1" } cretonne-reader = { path = "../reader", version = "0.6.0" }
filecheck = "0.3.0" filecheck = "0.3.0"
num_cpus = "1.8.0" num_cpus = "1.8.0"

View File

@@ -1,7 +1,7 @@
[package] [package]
authors = ["The Cretonne Project Developers"] authors = ["The Cretonne Project Developers"]
name = "cretonne-frontend" name = "cretonne-frontend"
version = "0.5.1" version = "0.6.0"
description = "Cretonne IR builder helper" description = "Cretonne IR builder helper"
license = "Apache-2.0" license = "Apache-2.0"
documentation = "https://cretonne.readthedocs.io/" documentation = "https://cretonne.readthedocs.io/"
@@ -9,7 +9,7 @@ repository = "https://github.com/cretonne/cretonne"
readme = "README.md" readme = "README.md"
[dependencies] [dependencies]
cretonne-codegen = { path = "../codegen", version = "0.5.1", default-features = false } cretonne-codegen = { path = "../codegen", version = "0.6.0", default-features = false }
[features] [features]
default = ["std"] default = ["std"]

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "cretonne-module" name = "cretonne-module"
version = "0.5.1" version = "0.6.0"
authors = ["The Cretonne Project Developers"] authors = ["The Cretonne Project Developers"]
description = "Support for linking functions and data with Cretonne" description = "Support for linking functions and data with Cretonne"
repository = "https://github.com/cretonne/cretonne" repository = "https://github.com/cretonne/cretonne"
@@ -9,12 +9,9 @@ license = "Apache-2.0"
readme = "README.md" readme = "README.md"
[dependencies] [dependencies]
cretonne-codegen = { path = "../codegen", version = "0.5.1", default-features = false } cretonne-codegen = { path = "../codegen", version = "0.6.0", default-features = false }
cretonne-entity = { path = "../entity", version = "0.5.1", default-features = false } cretonne-entity = { path = "../entity", version = "0.6.0", default-features = false }
hashmap_core = { version = "0.1.4", optional = true }
[dependencies.hashmap_core]
version = "0.1.1"
optional = true
[features] [features]
default = ["std"] default = ["std"]

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "cretonne-native" name = "cretonne-native"
version = "0.5.1" version = "0.6.0"
authors = ["The Cretonne Project Developers"] authors = ["The Cretonne Project Developers"]
description = "Support for targeting the host with Cretonne" description = "Support for targeting the host with Cretonne"
repository = "https://github.com/cretonne/cretonne" repository = "https://github.com/cretonne/cretonne"
@@ -8,7 +8,7 @@ license = "Apache-2.0"
readme = "README.md" readme = "README.md"
[dependencies] [dependencies]
cretonne-codegen = { path = "../codegen", version = "0.5.1", default-features = false } cretonne-codegen = { path = "../codegen", version = "0.6.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]
raw-cpuid = "3.1.0" raw-cpuid = "3.1.0"

View File

@@ -1,7 +1,7 @@
[package] [package]
authors = ["The Cretonne Project Developers"] authors = ["The Cretonne Project Developers"]
name = "cretonne-reader" name = "cretonne-reader"
version = "0.5.1" version = "0.6.0"
description = "Cretonne textual IR reader" description = "Cretonne textual IR reader"
license = "Apache-2.0" license = "Apache-2.0"
documentation = "https://cretonne.readthedocs.io/" documentation = "https://cretonne.readthedocs.io/"
@@ -9,7 +9,7 @@ repository = "https://github.com/cretonne/cretonne"
readme = "README.md" readme = "README.md"
[dependencies] [dependencies]
cretonne-codegen = { path = "../codegen", version = "0.5.1" } cretonne-codegen = { path = "../codegen", version = "0.6.0" }
[badges] [badges]
maintenance = { status = "experimental" } maintenance = { status = "experimental" }

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "cretonne-simplejit" name = "cretonne-simplejit"
version = "0.5.1" version = "0.6.0"
authors = ["The Cretonne Project Developers"] authors = ["The Cretonne Project Developers"]
description = "A simple JIT library backed by Cretonne" description = "A simple JIT library backed by Cretonne"
repository = "https://github.com/cretonne/cretonne" repository = "https://github.com/cretonne/cretonne"
@@ -9,9 +9,9 @@ license = "Apache-2.0"
readme = "README.md" readme = "README.md"
[dependencies] [dependencies]
cretonne-codegen = { path = "../codegen", version = "0.5.1", default-features = false } cretonne-codegen = { path = "../codegen", version = "0.6.0", default-features = false }
cretonne-module = { path = "../module", version = "0.5.1", default-features = false } cretonne-module = { path = "../module", version = "0.6.0", default-features = false }
cretonne-native = { path = "../native", version = "0.5.1", default-features = false } cretonne-native = { path = "../native", version = "0.6.0", default-features = false }
region = "0.2.0" region = "0.2.0"
libc = { version = "0.2.40", default-features = false } libc = { version = "0.2.40", default-features = false }
errno = "0.2.3" errno = "0.2.3"

View File

@@ -1,7 +1,7 @@
[package] [package]
authors = ["The Cretonne Project Developers"] authors = ["The Cretonne Project Developers"]
name = "cretonne" name = "cretonne"
version = "0.5.1" version = "0.6.0"
description = "Umbrella for commonly-used cretonne crates" description = "Umbrella for commonly-used cretonne crates"
license = "Apache-2.0" license = "Apache-2.0"
documentation = "https://cretonne.readthedocs.io/" documentation = "https://cretonne.readthedocs.io/"
@@ -10,8 +10,8 @@ readme = "README.md"
keywords = ["compile", "compiler", "jit"] keywords = ["compile", "compiler", "jit"]
[dependencies] [dependencies]
cretonne-codegen = { path = "../codegen", version = "0.5.1", default-features = false } cretonne-codegen = { path = "../codegen", version = "0.6.0", default-features = false }
cretonne-frontend = { path = "../frontend", version = "0.5.1", default-features = false } cretonne-frontend = { path = "../frontend", version = "0.6.0", default-features = false }
[features] [features]
default = ["std"] default = ["std"]

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "cretonne-wasm" name = "cretonne-wasm"
version = "0.5.1" version = "0.6.0"
authors = ["The Cretonne Project Developers"] authors = ["The Cretonne Project Developers"]
description = "Translator from WebAssembly to Cretonne IR" description = "Translator from WebAssembly to Cretonne IR"
repository = "https://github.com/cretonne/cretonne" repository = "https://github.com/cretonne/cretonne"
@@ -10,12 +10,9 @@ keywords = ["webassembly", "wasm"]
[dependencies] [dependencies]
wasmparser = { version = "0.16.1", default-features = false } wasmparser = { version = "0.16.1", default-features = false }
cretonne-codegen = { path = "../codegen", version = "0.5.1", default-features = false } cretonne-codegen = { path = "../codegen", version = "0.6.0", default-features = false }
cretonne-frontend = { path = "../frontend", version = "0.5.1", default-features = false } cretonne-frontend = { path = "../frontend", version = "0.6.0", default-features = false }
hashmap_core = { version = "0.1.4", optional = true }
[dependencies.hashmap_core]
version = "0.1.1"
optional = true
[dev-dependencies] [dev-dependencies]
tempdir = "0.3.5" tempdir = "0.3.5"