Skip to content

Commit

Permalink
Bump version to 0.48.0 (bytecodealliance#1202)
Browse files Browse the repository at this point in the history
* Bump version to 0.48.0

* Re-enable `byteorder`'s default features.

The code uses `WriteBytesExt` which depends on the `std` feature being
enabled. So for now, just enable `std`.
  • Loading branch information
sunfishcode authored Nov 5, 2019
1 parent 8923bac commit 45fb377
Show file tree
Hide file tree
Showing 19 changed files with 69 additions and 69 deletions.
30 changes: 15 additions & 15 deletions cranelift/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cranelift-tools"
authors = ["The Cranelift Project Developers"]
version = "0.47.0"
version = "0.48.0"
description = "Binaries for testing the Cranelift libraries"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/"
Expand All @@ -19,20 +19,20 @@ path = "src/clif-util.rs"

[dependencies]
cfg-if = "0.1"
cranelift-codegen = { path = "cranelift-codegen", version = "0.47.0" }
cranelift-entity = { path = "cranelift-entity", version = "0.47.0" }
cranelift-reader = { path = "cranelift-reader", version = "0.47.0" }
cranelift-frontend = { path = "cranelift-frontend", version = "0.47.0" }
cranelift-serde = { path = "cranelift-serde", version = "0.47.0", optional = true }
cranelift-wasm = { path = "cranelift-wasm", version = "0.47.0", optional = true }
cranelift-native = { path = "cranelift-native", version = "0.47.0" }
cranelift-filetests = { path = "cranelift-filetests", version = "0.47.0" }
cranelift-module = { path = "cranelift-module", version = "0.47.0" }
cranelift-faerie = { path = "cranelift-faerie", version = "0.47.0" }
cranelift-object = { path = "cranelift-object", version = "0.47.0" }
cranelift-simplejit = { path = "cranelift-simplejit", version = "0.47.0" }
cranelift-preopt = { path = "cranelift-preopt", version = "0.47.0" }
cranelift = { path = "cranelift-umbrella", version = "0.47.0" }
cranelift-codegen = { path = "cranelift-codegen", version = "0.48.0" }
cranelift-entity = { path = "cranelift-entity", version = "0.48.0" }
cranelift-reader = { path = "cranelift-reader", version = "0.48.0" }
cranelift-frontend = { path = "cranelift-frontend", version = "0.48.0" }
cranelift-serde = { path = "cranelift-serde", version = "0.48.0", optional = true }
cranelift-wasm = { path = "cranelift-wasm", version = "0.48.0", optional = true }
cranelift-native = { path = "cranelift-native", version = "0.48.0" }
cranelift-filetests = { path = "cranelift-filetests", version = "0.48.0" }
cranelift-module = { path = "cranelift-module", version = "0.48.0" }
cranelift-faerie = { path = "cranelift-faerie", version = "0.48.0" }
cranelift-object = { path = "cranelift-object", version = "0.48.0" }
cranelift-simplejit = { path = "cranelift-simplejit", version = "0.48.0" }
cranelift-preopt = { path = "cranelift-preopt", version = "0.48.0" }
cranelift = { path = "cranelift-umbrella", version = "0.48.0" }
filecheck = "0.4.0"
clap = "2.32.0"
serde = "1.0.8"
Expand Down
4 changes: 2 additions & 2 deletions cranelift/bforest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-bforest"
version = "0.47.0"
version = "0.48.0"
description = "A forest of B+-trees"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/"
Expand All @@ -12,7 +12,7 @@ keywords = ["btree", "forest", "set", "map"]
edition = "2018"

[dependencies]
cranelift-entity = { path = "../cranelift-entity", version = "0.47.0", default-features = false }
cranelift-entity = { path = "../cranelift-entity", version = "0.48.0", default-features = false }

[badges]
maintenance = { status = "experimental" }
Expand Down
12 changes: 6 additions & 6 deletions cranelift/codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-codegen"
version = "0.47.0"
version = "0.48.0"
description = "Low-level code generator library"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/"
Expand All @@ -13,23 +13,23 @@ build = "build.rs"
edition = "2018"

[dependencies]
cranelift-codegen-shared = { path = "./shared", version = "0.47.0" }
cranelift-entity = { path = "../cranelift-entity", version = "0.47.0" }
cranelift-bforest = { path = "../cranelift-bforest", version = "0.47.0" }
cranelift-codegen-shared = { path = "./shared", version = "0.48.0" }
cranelift-entity = { path = "../cranelift-entity", version = "0.48.0" }
cranelift-bforest = { path = "../cranelift-bforest", version = "0.48.0" }
hashbrown = { version = "0.6", optional = true }
target-lexicon = "0.8.1"
log = { version = "0.4.6", default-features = false }
serde = { version = "1.0.94", features = ["derive"], optional = true }
smallvec = { version = "1.0.0" }
thiserror = "1.0.4"
byteorder = { version = "1.3.2", default-features = false }
byteorder = { version = "1.3.2" }
# It is a goal of the cranelift-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
# accomodated in `tests`.

[build-dependencies]
cranelift-codegen-meta = { path = "meta", version = "0.47.0" }
cranelift-codegen-meta = { path = "meta", version = "0.48.0" }

[features]
default = ["std", "basic-blocks"]
Expand Down
6 changes: 3 additions & 3 deletions cranelift/codegen/meta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "cranelift-codegen-meta"
authors = ["The Cranelift Project Developers"]
version = "0.47.0"
version = "0.48.0"
description = "Metaprogram for cranelift-codegen code generator library"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/CraneStation/cranelift"
readme = "README.md"
edition = "2018"

[dependencies]
cranelift-codegen-shared = { path = "../shared", version = "0.47.0" }
cranelift-entity = { path = "../../cranelift-entity", version = "0.47.0" }
cranelift-codegen-shared = { path = "../shared", version = "0.48.0" }
cranelift-entity = { path = "../../cranelift-entity", version = "0.48.0" }

[badges]
maintenance = { status = "experimental" }
Expand Down
2 changes: 1 addition & 1 deletion cranelift/codegen/shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-codegen-shared"
version = "0.47.0"
version = "0.48.0"
description = "For code shared between cranelift-codegen-meta and cranelift-codegen"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/CraneStation/cranelift"
Expand Down
2 changes: 1 addition & 1 deletion cranelift/entity/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-entity"
version = "0.47.0"
version = "0.48.0"
description = "Data structures using entity references as mapping keys"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/"
Expand Down
6 changes: 3 additions & 3 deletions cranelift/faerie/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cranelift-faerie"
version = "0.47.0"
version = "0.48.0"
authors = ["The Cranelift Project Developers"]
description = "Emit Cranelift output to native object files with Faerie"
repository = "https://github.com/CraneStation/cranelift"
Expand All @@ -10,15 +10,15 @@ readme = "README.md"
edition = "2018"

[dependencies]
cranelift-module = { path = "../cranelift-module", version = "0.47.0" }
cranelift-module = { path = "../cranelift-module", version = "0.48.0" }
faerie = "0.11.0"
goblin = "0.1.0"
failure = "0.1.2"
target-lexicon = "0.8.1"

[dependencies.cranelift-codegen]
path = "../cranelift-codegen"
version = "0.47.0"
version = "0.48.0"
default-features = false
features = ["std"]

Expand Down
10 changes: 5 additions & 5 deletions cranelift/filetests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cranelift-filetests"
authors = ["The Cranelift Project Developers"]
version = "0.47.0"
version = "0.48.0"
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"
Expand All @@ -10,10 +10,10 @@ publish = false
edition = "2018"

[dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.47.0", features = ["testing_hooks"] }
cranelift-native = { path = "../cranelift-native", version = "0.47.0" }
cranelift-reader = { path = "../cranelift-reader", version = "0.47.0" }
cranelift-preopt = { path = "../cranelift-preopt", version = "0.47.0" }
cranelift-codegen = { path = "../cranelift-codegen", version = "0.48.0", features = ["testing_hooks"] }
cranelift-native = { path = "../cranelift-native", version = "0.48.0" }
cranelift-reader = { path = "../cranelift-reader", version = "0.48.0" }
cranelift-preopt = { path = "../cranelift-preopt", version = "0.48.0" }
file-per-thread-logger = "0.1.2"
filecheck = "0.4.0"
log = "0.4.6"
Expand Down
4 changes: 2 additions & 2 deletions cranelift/frontend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-frontend"
version = "0.47.0"
version = "0.48.0"
description = "Cranelift IR builder helper"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/"
Expand All @@ -11,7 +11,7 @@ readme = "README.md"
edition = "2018"

[dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.47.0", default-features = false }
cranelift-codegen = { path = "../cranelift-codegen", version = "0.48.0", default-features = false }
target-lexicon = "0.8.1"
log = { version = "0.4.6", default-features = false }
hashbrown = { version = "0.6", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions cranelift/module/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cranelift-module"
version = "0.47.0"
version = "0.48.0"
authors = ["The Cranelift Project Developers"]
description = "Support for linking functions and data with Cranelift"
repository = "https://github.com/CraneStation/cranelift"
Expand All @@ -11,8 +11,8 @@ readme = "README.md"
edition = "2018"

[dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.47.0", default-features = false }
cranelift-entity = { path = "../cranelift-entity", version = "0.47.0" }
cranelift-codegen = { path = "../cranelift-codegen", version = "0.48.0", default-features = false }
cranelift-entity = { path = "../cranelift-entity", version = "0.48.0" }
hashbrown = { version = "0.6", optional = true }
log = { version = "0.4.6", default-features = false }
thiserror = "1.0.4"
Expand Down
4 changes: 2 additions & 2 deletions cranelift/native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cranelift-native"
version = "0.47.0"
version = "0.48.0"
authors = ["The Cranelift Project Developers"]
description = "Support for targeting the host with Cranelift"
repository = "https://github.com/CraneStation/cranelift"
Expand All @@ -10,7 +10,7 @@ readme = "README.md"
edition = "2018"

[dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.47.0", default-features = false }
cranelift-codegen = { path = "../cranelift-codegen", version = "0.48.0", default-features = false }
target-lexicon = "0.8.1"

[target.'cfg(any(target_arch = "x86", target_arch = "x86_64"))'.dependencies]
Expand Down
6 changes: 3 additions & 3 deletions cranelift/object/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cranelift-object"
version = "0.47.0"
version = "0.48.0"
authors = ["The Cranelift Project Developers"]
description = "Emit Cranelift output to native object files with `object`"
repository = "https://github.com/CraneStation/cranelift"
Expand All @@ -10,13 +10,13 @@ readme = "README.md"
edition = "2018"

[dependencies]
cranelift-module = { path = "../cranelift-module", version = "0.47.0" }
cranelift-module = { path = "../cranelift-module", version = "0.48.0" }
object = { version = "0.15.0", default-features = false, features = ["write"] }
target-lexicon = "0.8.1"

[dependencies.cranelift-codegen]
path = "../cranelift-codegen"
version = "0.47.0"
version = "0.48.0"
default-features = false
features = ["std"]

Expand Down
6 changes: 3 additions & 3 deletions cranelift/preopt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-preopt"
version = "0.47.0"
version = "0.48.0"
description = "Support for optimizations in Cranelift"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/"
Expand All @@ -12,8 +12,8 @@ keywords = ["optimize", "compile", "compiler", "jit"]
edition = "2018"

[dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.47.0", default-features = false }
cranelift-entity = { path = "../cranelift-entity", version = "0.47.0" }
cranelift-codegen = { path = "../cranelift-codegen", version = "0.48.0", default-features = false }
cranelift-entity = { path = "../cranelift-entity", version = "0.48.0" }
# This is commented out because it doesn't build on Rust 1.25.0, which
# cranelift currently supports.
# rustc_apfloat = { version = "0.1.2", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion cranelift/publish-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ topdir=$(dirname "$0")
cd "$topdir"

# All the cranelift-* crates have the same version number
version="0.47.0"
version="0.48.0"

# Update all of the Cargo.toml files.
#
Expand Down
4 changes: 2 additions & 2 deletions cranelift/reader/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift-reader"
version = "0.47.0"
version = "0.48.0"
description = "Cranelift textual IR reader"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/"
Expand All @@ -10,7 +10,7 @@ readme = "README.md"
edition = "2018"

[dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.47.0" }
cranelift-codegen = { path = "../cranelift-codegen", version = "0.48.0" }
target-lexicon = "0.8.1"

[badges]
Expand Down
6 changes: 3 additions & 3 deletions cranelift/serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cranelift-serde"
version = "0.47.0"
version = "0.48.0"
authors = ["The Cranelift Project Developers"]
description = "Serializer/Deserializer for Cranelift IR"
repository = "https://github.com/CraneStation/cranelift"
Expand All @@ -18,8 +18,8 @@ clap = "2.32.0"
serde = "1.0.8"
serde_derive = "1.0.75"
serde_json = "1.0.26"
cranelift-codegen = { path = "../cranelift-codegen", version = "0.47.0" }
cranelift-reader = { path = "../cranelift-reader", version = "0.47.0" }
cranelift-codegen = { path = "../cranelift-codegen", version = "0.48.0" }
cranelift-reader = { path = "../cranelift-reader", version = "0.48.0" }

[badges]
maintenance = { status = "experimental" }
Expand Down
14 changes: 7 additions & 7 deletions cranelift/simplejit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cranelift-simplejit"
version = "0.47.0"
version = "0.48.0"
authors = ["The Cranelift Project Developers"]
description = "A simple JIT library backed by Cranelift"
repository = "https://github.com/CraneStation/cranelift"
Expand All @@ -10,8 +10,8 @@ readme = "README.md"
edition = "2018"

[dependencies]
cranelift-module = { path = "../cranelift-module", version = "0.47.0" }
cranelift-native = { path = "../cranelift-native", version = "0.47.0" }
cranelift-module = { path = "../cranelift-module", version = "0.48.0" }
cranelift-native = { path = "../cranelift-native", version = "0.48.0" }
region = "2.0.0"
libc = { version = "0.2.42" }
errno = "0.2.4"
Expand All @@ -20,7 +20,7 @@ memmap = { version = "0.7.0", optional = true }

[dependencies.cranelift-codegen]
path = "../cranelift-codegen"
version = "0.47.0"
version = "0.48.0"
default-features = false
features = ["std"]

Expand All @@ -32,9 +32,9 @@ selinux-fix = ['memmap']
default = []

[dev-dependencies]
cranelift = { path = "../cranelift-umbrella", version = "0.47.0" }
cranelift-frontend = { path = "../cranelift-frontend", version = "0.47.0" }
cranelift-entity = { path = "../cranelift-entity", version = "0.47.0" }
cranelift = { path = "../cranelift-umbrella", version = "0.48.0" }
cranelift-frontend = { path = "../cranelift-frontend", version = "0.48.0" }
cranelift-entity = { path = "../cranelift-entity", version = "0.48.0" }

[badges]
maintenance = { status = "experimental" }
Expand Down
6 changes: 3 additions & 3 deletions cranelift/umbrella/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["The Cranelift Project Developers"]
name = "cranelift"
version = "0.47.0"
version = "0.48.0"
description = "Umbrella for commonly-used cranelift crates"
license = "Apache-2.0 WITH LLVM-exception"
documentation = "https://cranelift.readthedocs.io/"
Expand All @@ -12,8 +12,8 @@ keywords = ["compile", "compiler", "jit"]
edition = "2018"

[dependencies]
cranelift-codegen = { path = "../cranelift-codegen", version = "0.47.0", default-features = false }
cranelift-frontend = { path = "../cranelift-frontend", version = "0.47.0", default-features = false }
cranelift-codegen = { path = "../cranelift-codegen", version = "0.48.0", default-features = false }
cranelift-frontend = { path = "../cranelift-frontend", version = "0.48.0", default-features = false }

[features]
default = ["std"]
Expand Down
Loading

0 comments on commit 45fb377

Please sign in to comment.