Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
1828: Increment Crate Versions r=jojolepro a=jojolepro



Co-authored-by: jojo <[email protected]>
  • Loading branch information
bors[bot] and AnneKitsune committed Jul 30, 2019
2 parents 5637164 + 45a3c7e commit c72063f
Show file tree
Hide file tree
Showing 18 changed files with 95 additions and 95 deletions.
34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst"
version = "0.11.1"
version = "0.12.0"
authors = ["Eyal Kalderon <[email protected]>", "Amethyst Foundation <[email protected]>"]
edition = "2018"
description = "Data-oriented game engine written in Rust"
Expand Down Expand Up @@ -104,22 +104,22 @@ members = [
]

[dependencies]
amethyst_animation = { path = "amethyst_animation", version = "0.6.0", optional = true }
amethyst_assets = { path = "amethyst_assets", version = "0.7.0" }
amethyst_audio = { path = "amethyst_audio", version = "0.6.0", optional = true }
amethyst_config = { path = "amethyst_config", version = "0.10.0" }
amethyst_core = { path = "amethyst_core", version = "0.6.0" }
amethyst_error = { path = "amethyst_error", version = "0.1.0" }
amethyst_controls = { path = "amethyst_controls", version = "0.5.0" }
amethyst_derive = { path = "amethyst_derive", version = "0.4.0" }
amethyst_gltf = { path = "amethyst_gltf", version = "0.6.0", optional = true }
amethyst_network = { path = "amethyst_network", version = "0.4.0", optional = true }
amethyst_locale = { path = "amethyst_locale", version = "0.5.0", optional = true }
amethyst_rendy = { path = "amethyst_rendy", version = "0.1.0", features = ["window"], optional = true }
amethyst_input = { path = "amethyst_input", version = "0.7.0" }
amethyst_ui = { path = "amethyst_ui", version = "0.6.0" }
amethyst_utils = { path = "amethyst_utils", version = "0.6.0" }
amethyst_window = { path = "amethyst_window", version = "0.1.0" }
amethyst_animation = { path = "amethyst_animation", version = "0.7.0", optional = true }
amethyst_assets = { path = "amethyst_assets", version = "0.8.0" }
amethyst_audio = { path = "amethyst_audio", version = "0.7.0", optional = true }
amethyst_config = { path = "amethyst_config", version = "0.11.0" }
amethyst_core = { path = "amethyst_core", version = "0.7.0" }
amethyst_error = { path = "amethyst_error", version = "0.2.0" }
amethyst_controls = { path = "amethyst_controls", version = "0.6.0" }
amethyst_derive = { path = "amethyst_derive", version = "0.5.0" }
amethyst_gltf = { path = "amethyst_gltf", version = "0.7.0", optional = true }
amethyst_network = { path = "amethyst_network", version = "0.5.0", optional = true }
amethyst_locale = { path = "amethyst_locale", version = "0.6.0", optional = true }
amethyst_rendy = { path = "amethyst_rendy", version = "0.2.0", features = ["window"], optional = true }
amethyst_input = { path = "amethyst_input", version = "0.8.0" }
amethyst_ui = { path = "amethyst_ui", version = "0.7.0" }
amethyst_utils = { path = "amethyst_utils", version = "0.7.0" }
amethyst_window = { path = "amethyst_window", version = "0.2.0" }
crossbeam-channel = "0.3.9"
derivative = "1.0"
fern = { version = "0.5", features = ["colored"] }
Expand Down
14 changes: 7 additions & 7 deletions amethyst_animation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_animation"
version = "0.6.0"
version = "0.7.0"
authors = ["Simon Rönnberg <[email protected]>"]
edition = "2018"
description = "Animation support for Amethyst"
Expand All @@ -18,11 +18,11 @@ appveyor = { repository = "amethyst/amethyst", branch = "master" }
travis-ci = { repository = "amethyst/amethyst" }

[dependencies]
amethyst_assets = { path = "../amethyst_assets/", version = "0.7.0" }
amethyst_core = { path = "../amethyst_core/", version = "0.6.0" }
amethyst_error = { path = "../amethyst_error/", version = "0.1.0" }
amethyst_derive = { path = "../amethyst_derive", version = "0.4.0" }
amethyst_rendy = { path = "../amethyst_rendy", version = "0.1.0" }
amethyst_assets = { path = "../amethyst_assets/", version = "0.8.0" }
amethyst_core = { path = "../amethyst_core/", version = "0.7.0" }
amethyst_error = { path = "../amethyst_error/", version = "0.2.0" }
amethyst_derive = { path = "../amethyst_derive", version = "0.5.0" }
amethyst_rendy = { path = "../amethyst_rendy", version = "0.2.0" }
derivative = "1.0"
fnv = "1"
hibitset = { version = "0.5.1", features = ["parallel"] }
Expand All @@ -38,4 +38,4 @@ thread_profiler = { version = "0.3", optional = true }
[features]
profiler = [ "thread_profiler/thread_profiler" ]
nightly = [ "amethyst_core/nightly" ]
float64 = ["amethyst_core/float64"]
float64 = ["amethyst_core/float64"]
6 changes: 3 additions & 3 deletions amethyst_assets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_assets"
version = "0.7.0"
version = "0.8.0"
authors = ["torkleyy <[email protected]>"]
readme = "README.md"
edition = "2018"
Expand All @@ -21,8 +21,8 @@ appveyor = { repository = "amethyst/amethyst", branch = "master" }
travis-ci = { repository = "amethyst/amethyst" }

[dependencies]
amethyst_core = { path = "../amethyst_core", version = "0.6.0" }
amethyst_error = { path = "../amethyst_error", version = "0.1.0" }
amethyst_core = { path = "../amethyst_core", version = "0.7.0" }
amethyst_error = { path = "../amethyst_error", version = "0.2.0" }
crossbeam-queue = "0.1.2"
derivative = "1.0"
fnv = "1"
Expand Down
10 changes: 5 additions & 5 deletions amethyst_audio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_audio"
version = "0.6.0"
version = "0.7.0"
authors = ["Xaeroxe <[email protected]>"]
edition = "2018"
description = "Audio support for Amethyst"
Expand All @@ -20,17 +20,17 @@ appveyor = { repository = "amethyst/amethyst", branch = "master" }
travis-ci = { repository = "amethyst/amethyst" }

[dependencies]
amethyst_assets = { path = "../amethyst_assets", version = "0.7.0"}
amethyst_core = { path = "../amethyst_core", version = "0.6.0"}
amethyst_error = { path = "../amethyst_error", version = "0.1.0"}
amethyst_assets = { path = "../amethyst_assets", version = "0.8.0"}
amethyst_core = { path = "../amethyst_core", version = "0.7.0"}
amethyst_error = { path = "../amethyst_error", version = "0.2.0"}
cpal = "0.8"
log = "0.4.6"
rodio = "0.9"
serde = { version = "1.0", features = ["derive"] }
thread_profiler = { version = "0.3", optional = true }

[dev-dependencies]
amethyst_utils = { path = "../amethyst_utils", version = "0.6.0"}
amethyst_utils = { path = "../amethyst_utils", version = "0.7.0"}

[dependencies.smallvec]
version = "0.6"
Expand Down
4 changes: 2 additions & 2 deletions amethyst_config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_config"
version = "0.10.0"
version = "0.11.0"
authors = ["Aceeri <[email protected]>"]
edition = "2018"
description = "Loading from .ron files into Rust structures with defaults to prevent hard errors."
Expand Down Expand Up @@ -28,4 +28,4 @@ serde_derive = "1"

[features]
profiler = [ "thread_profiler/thread_profiler" ]
nightly = []
nightly = []
10 changes: 5 additions & 5 deletions amethyst_controls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_controls"
version = "0.5.0"
version = "0.6.0"
authors = ["Joël Lupien <[email protected]>"]
edition = "2018"
description = "Amethyst controls"
Expand All @@ -16,10 +16,10 @@ appveyor = { repository = "amethyst/amethyst" }
travis-ci = { repository = "amethyst/amethyst" }

[dependencies]
amethyst_assets = { path = "../amethyst_assets", version = "0.7.0" }
amethyst_core = { path = "../amethyst_core", version = "0.6.0" }
amethyst_error = { path = "../amethyst_error", version = "0.1.0" }
amethyst_input = { path = "../amethyst_input", version = "0.7.0" }
amethyst_assets = { path = "../amethyst_assets", version = "0.8.0" }
amethyst_core = { path = "../amethyst_core", version = "0.7.0" }
amethyst_error = { path = "../amethyst_error", version = "0.2.0" }
amethyst_input = { path = "../amethyst_input", version = "0.8.0" }
serde = { version = "1.0", features = ["derive"] }
winit = { version = "0.19", features = ["serde"] }
log = "0.4.6"
Expand Down
6 changes: 3 additions & 3 deletions amethyst_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_core"
version = "0.6.0"
version = "0.7.0"
authors = ["Simon Rönnberg <[email protected]>"]
edition = "2018"
description = "Amethyst core"
Expand All @@ -20,7 +20,7 @@ nalgebra = { version = "0.18.0", features = ["serde-serialize", "mint"] }
alga = { version = "0.9.0", default-features = false }
alga_derive = "0.9.0"
approx = "0.3"
amethyst_error = { path = "../amethyst_error", version = "0.1.0" }
amethyst_error = { path = "../amethyst_error", version = "0.2.0" }
fnv = "1"
hibitset = { version = "0.5.2", features = ["parallel"] }
log = "0.4.6"
Expand All @@ -37,7 +37,7 @@ derive-new = "0.5.6"
thread_profiler = { version = "0.3", optional = true }

[dev-dependencies]
amethyst = { path = "..", version = "0.11.0" }
amethyst = { path = "..", version = "0.12.0" }
ron = "0.5.1"

[features]
Expand Down
10 changes: 5 additions & 5 deletions amethyst_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_derive"
version = "0.4.0"
version = "0.5.0"
authors = ["Simon Rönnberg <[email protected]>"]
edition = "2018"
description = "Amethyst derive"
Expand All @@ -21,10 +21,10 @@ quote = "0.6"
proc-macro2 = "0.4"

[dev-dependencies]
amethyst_core = { path = "../amethyst_core", version = "0.6.0" }
amethyst_assets = { path = "../amethyst_assets", version = "0.7.0" }
amethyst_error = { path = "../amethyst_error", version = "0.1.0" }
amethyst_test = { path = "../amethyst_test", version = "0.2.0" }
amethyst_core = { path = "../amethyst_core", version = "0.7.0" }
amethyst_assets = { path = "../amethyst_assets", version = "0.8.0" }
amethyst_error = { path = "../amethyst_error", version = "0.2.0" }
amethyst_test = { path = "../amethyst_test", version = "0.3.0" }

[lib]
name = "amethyst_derive"
Expand Down
2 changes: 1 addition & 1 deletion amethyst_error/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_error"
version = "0.1.0"
version = "0.2.0"
authors = ["John-John Tedro <[email protected]>"]
readme = "README.md"
edition = "2018"
Expand Down
12 changes: 6 additions & 6 deletions amethyst_gltf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_gltf"
version = "0.6.0"
version = "0.7.0"
authors = ["Rhuagh <[email protected]>"]
edition = "2018"
description = "GLTF asset loading"
Expand All @@ -16,11 +16,11 @@ appveyor = { repository = "amethyst/amethyst" }
travis-ci = { repository = "amethyst/amethyst" }

[dependencies]
amethyst_assets = { path = "../amethyst_assets/", version = "0.7.0" }
amethyst_animation = { path = "../amethyst_animation/", version = "0.6.0" }
amethyst_core = { path = "../amethyst_core/", version = "0.6.0" }
amethyst_error = { path = "../amethyst_error/", version = "0.1.0" }
amethyst_rendy = { path = "../amethyst_rendy", version = "0.1.0" }
amethyst_assets = { path = "../amethyst_assets/", version = "0.8.0" }
amethyst_animation = { path = "../amethyst_animation/", version = "0.7.0" }
amethyst_core = { path = "../amethyst_core/", version = "0.7.0" }
amethyst_error = { path = "../amethyst_error/", version = "0.2.0" }
amethyst_rendy = { path = "../amethyst_rendy", version = "0.2.0" }
err-derive = "0.1"
base64 = "0.10"
fnv = "1"
Expand Down
10 changes: 5 additions & 5 deletions amethyst_input/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_input"
version = "0.7.1"
version = "0.8.0"
authors = ["Rhuagh <[email protected]>", "Xaeroxe <[email protected]>"]
edition = "2018"
description = "Input rebinding "
Expand All @@ -16,10 +16,10 @@ appveyor = { repository = "amethyst/amethyst" }
travis-ci = { repository = "amethyst/amethyst" }

[dependencies]
amethyst_core = { path = "../amethyst_core/", version = "0.6.0" }
amethyst_error = { path = "../amethyst_error/", version = "0.1.0" }
amethyst_config = { path = "../amethyst_config/", version = "0.10.0" }
amethyst_window = { path = "../amethyst_window/", version = "0.1.0" }
amethyst_core = { path = "../amethyst_core/", version = "0.7.0" }
amethyst_error = { path = "../amethyst_error/", version = "0.2.0" }
amethyst_config = { path = "../amethyst_config/", version = "0.11.0" }
amethyst_window = { path = "../amethyst_window/", version = "0.2.0" }
derivative = "1.0"
fnv = "1"
serde = { version = "1", features = ["derive"] }
Expand Down
8 changes: 4 additions & 4 deletions amethyst_locale/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_locale"
version = "0.5.0"
version = "0.6.0"
authors = ["Joël Lupien <[email protected]>"]
readme = "README.md"
edition = "2018"
Expand All @@ -21,9 +21,9 @@ appveyor = { repository = "amethyst/amethyst", branch = "master" }
travis-ci = { repository = "amethyst/amethyst" }

[dependencies]
amethyst_assets = { path = "../amethyst_assets", version = "0.7.0" }
amethyst_core = { path = "../amethyst_core", version = "0.6.0" }
amethyst_error = { path = "../amethyst_error", version = "0.1.0" }
amethyst_assets = { path = "../amethyst_assets", version = "0.8.0" }
amethyst_core = { path = "../amethyst_core", version = "0.7.0" }
amethyst_error = { path = "../amethyst_error", version = "0.2.0" }
serde = { version = "1.0", features = ["derive"] }
fluent = "0.6.0"
# `fluent`'s Cargo.toml is happy to take `intl_pluralrules` 1.1.0, but the code is not compatible,
Expand Down
6 changes: 3 additions & 3 deletions amethyst_network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_network"
version = "0.4.0"
version = "0.5.0"
authors = [
"Joël Lupien (Jojolepro) <[email protected]>",
"Lucio Franco (LucioFranco) <[email protected]>",
Expand All @@ -23,8 +23,8 @@ nightly = [ "amethyst_core/nightly" ]
float64 = ["amethyst_core/float64"]

[dependencies]
amethyst_core = { path = "../amethyst_core", version = "0.6" }
amethyst_error = { path = "../amethyst_error", version = "0.1.0" }
amethyst_core = { path = "../amethyst_core", version = "0.7.0" }
amethyst_error = { path = "../amethyst_error", version = "0.2.0" }
serde = { version = "1", features = ["derive"] }
shrev = "1.0"
shred = "0.7"
Expand Down
14 changes: 7 additions & 7 deletions amethyst_rendy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_rendy"
version = "0.1.2"
version = "0.2.0"
authors = ["Amethyst Foundation <[email protected]>"]
edition = "2018"
description = "High-level rendering engine with multiple backends"
Expand All @@ -12,12 +12,12 @@ license = "MIT/Apache-2.0"
features = ["shader-compiler", "test-support", "winit", "vulkan"]

[dependencies]
amethyst_assets = { path = "../amethyst_assets", version = "0.7" }
amethyst_core = { path = "../amethyst_core", version = "0.6" }
amethyst_derive = { path = "../amethyst_derive", version = "0.4" }
amethyst_error = { path = "../amethyst_error", version = "0.1" }
amethyst_window = { path = "../amethyst_window", version = "0.1", optional = true }
amethyst_config = { path = "../amethyst_config", version = "0.10" }
amethyst_assets = { path = "../amethyst_assets", version = "0.8" }
amethyst_core = { path = "../amethyst_core", version = "0.7" }
amethyst_derive = { path = "../amethyst_derive", version = "0.5" }
amethyst_error = { path = "../amethyst_error", version = "0.2" }
amethyst_window = { path = "../amethyst_window", version = "0.2", optional = true }
amethyst_config = { path = "../amethyst_config", version = "0.11" }
derive-new = "0.5.6"
failure = "0.1"
genmesh = "0.6"
Expand Down
4 changes: 2 additions & 2 deletions amethyst_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_test"
version = "0.2.0"
version = "0.3.0"
authors = ["Azriel Hoh <[email protected]>"]
edition = "2018"
description = "Amethyst test utilities crate"
Expand All @@ -13,7 +13,7 @@ repository = "https://github.com/amethyst/amethyst"
license = "MIT/Apache-2.0"

[dependencies]
amethyst = { path = "..", version = "0.11.0" }
amethyst = { path = "..", version = "0.12.0" }
boxfnonce = "0.1"
derivative = "1.0"
derive-new = "0.5"
Expand Down
16 changes: 8 additions & 8 deletions amethyst_ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "amethyst_ui"
version = "0.6.0"
version = "0.7.0"
authors = ["Jacob Kiesel <[email protected]>", "Joël Lupien <[email protected]>"]
edition = "2018"
description = "Amethyst UI crate"
Expand All @@ -13,13 +13,13 @@ repository = "https://github.com/amethyst/amethyst"
license = "MIT/Apache-2.0"

[dependencies]
amethyst_assets = { path = "../amethyst_assets", version = "0.7.0" }
amethyst_audio = { path = "../amethyst_audio", version = "0.6.0"}
amethyst_core = { path = "../amethyst_core", version = "0.6.0" }
amethyst_error = { path = "../amethyst_error", version = "0.1.0" }
amethyst_input = { path = "../amethyst_input", version = "0.7.0" }
amethyst_rendy = { path = "../amethyst_rendy", version = "0.1.0" }
amethyst_window = { path = "../amethyst_window", version = "0.1.0" }
amethyst_assets = { path = "../amethyst_assets", version = "0.8.0" }
amethyst_audio = { path = "../amethyst_audio", version = "0.7.0"}
amethyst_core = { path = "../amethyst_core", version = "0.7.0" }
amethyst_error = { path = "../amethyst_error", version = "0.2.0" }
amethyst_input = { path = "../amethyst_input", version = "0.8.0" }
amethyst_rendy = { path = "../amethyst_rendy", version = "0.2.0" }
amethyst_window = { path = "../amethyst_window", version = "0.2.0" }
clipboard = "0.5"
derivative = "1.0"
derive-new = "0.5.6"
Expand Down
Loading

0 comments on commit c72063f

Please sign in to comment.