forked from amethyst/amethyst
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1965: Publish v0.13.1 r=azriel91 a=distransient ## Description This increments the patch version of all changed crates and updates the Changelog. Crates which depend on patched crates but have not been changed I've left alone, since the only crates which truly need their hotfixes are `amethyst_locale` and `amethyst_tiles`. After this PR is approved and merged I will begin publishing 0.13.1. Co-authored-by: Kel <[email protected]>
- Loading branch information
Showing
12 changed files
with
59 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst" | ||
version = "0.13.0" | ||
version = "0.13.1" | ||
authors = ["Eyal Kalderon <[email protected]>", "Amethyst Foundation <[email protected]>"] | ||
edition = "2018" | ||
description = "Data-oriented game engine written in Rust" | ||
|
@@ -108,23 +108,23 @@ members = [ | |
] | ||
|
||
[dependencies] | ||
amethyst_animation = { path = "amethyst_animation", version = "0.8.0", optional = true } | ||
amethyst_assets = { path = "amethyst_assets", version = "0.9.0" } | ||
amethyst_animation = { path = "amethyst_animation", version = "0.8.1", optional = true } | ||
amethyst_assets = { path = "amethyst_assets", version = "0.9.1" } | ||
amethyst_audio = { path = "amethyst_audio", version = "0.8.0", optional = true } | ||
amethyst_config = { path = "amethyst_config", version = "0.12.0" } | ||
amethyst_core = { path = "amethyst_core", version = "0.8.0" } | ||
amethyst_core = { path = "amethyst_core", version = "0.8.1" } | ||
amethyst_error = { path = "amethyst_error", version = "0.3.0" } | ||
amethyst_controls = { path = "amethyst_controls", version = "0.7.0" } | ||
amethyst_derive = { path = "amethyst_derive", version = "0.6.0" } | ||
amethyst_gltf = { path = "amethyst_gltf", version = "0.8.0", optional = true } | ||
amethyst_network = { path = "amethyst_network", version = "0.6.0", optional = true } | ||
amethyst_locale = { path = "amethyst_locale", version = "0.7.0", optional = true } | ||
amethyst_derive = { path = "amethyst_derive", version = "0.6.1" } | ||
amethyst_gltf = { path = "amethyst_gltf", version = "0.8.1", optional = true } | ||
amethyst_network = { path = "amethyst_network", version = "0.6.1", optional = true } | ||
amethyst_locale = { path = "amethyst_locale", version = "0.7.1", optional = true } | ||
amethyst_rendy = { path = "amethyst_rendy", version = "0.3.0", features = ["window"], optional = true } | ||
amethyst_input = { path = "amethyst_input", version = "0.9.0" } | ||
amethyst_ui = { path = "amethyst_ui", version = "0.8.0" } | ||
amethyst_input = { path = "amethyst_input", version = "0.9.1" } | ||
amethyst_ui = { path = "amethyst_ui", version = "0.8.1" } | ||
amethyst_utils = { path = "amethyst_utils", version = "0.8.0" } | ||
amethyst_window = { path = "amethyst_window", version = "0.3.0" } | ||
amethyst_tiles = { path = "amethyst_tiles", version = "0.1.0", optional = true } | ||
amethyst_tiles = { path = "amethyst_tiles", version = "0.1.1", optional = true } | ||
crossbeam-channel = "0.3.9" | ||
derivative = "1.0" | ||
fern = { version = "0.5", features = ["colored"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst_animation" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["Simon Rönnberg <[email protected]>"] | ||
edition = "2018" | ||
description = "Animation support for Amethyst" | ||
|
@@ -17,12 +17,12 @@ license = "MIT/Apache-2.0" | |
travis-ci = { repository = "amethyst/amethyst" } | ||
|
||
[dependencies] | ||
amethyst_assets = { path = "../amethyst_assets/", version = "0.9.0" } | ||
amethyst_core = { path = "../amethyst_core/", version = "0.8.0" } | ||
amethyst_assets = { path = "../amethyst_assets/", version = "0.9.1" } | ||
amethyst_core = { path = "../amethyst_core/", version = "0.8.1" } | ||
amethyst_error = { path = "../amethyst_error/", version = "0.3.0" } | ||
amethyst_derive = { path = "../amethyst_derive", version = "0.6.0" } | ||
amethyst_derive = { path = "../amethyst_derive", version = "0.6.1" } | ||
amethyst_rendy = { path = "../amethyst_rendy", version = "0.3.0" } | ||
amethyst_ui = { path = "../amethyst_ui", version = "0.8.0" } | ||
amethyst_ui = { path = "../amethyst_ui", version = "0.8.1" } | ||
derivative = "1.0" | ||
fnv = "1" | ||
itertools = "0.8.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst_assets" | ||
version = "0.9.0" | ||
version = "0.9.1" | ||
authors = ["torkleyy <[email protected]>"] | ||
readme = "README.md" | ||
edition = "2018" | ||
|
@@ -20,8 +20,8 @@ repository = "https://github.com/amethyst/amethyst" | |
travis-ci = { repository = "amethyst/amethyst" } | ||
|
||
[dependencies] | ||
amethyst_core = { path = "../amethyst_core", version = "0.8.0" } | ||
amethyst_derive = { path = "../amethyst_derive", version = "0.6.0"} | ||
amethyst_core = { path = "../amethyst_core", version = "0.8.1" } | ||
amethyst_derive = { path = "../amethyst_derive", version = "0.6.1"} | ||
amethyst_error = { path = "../amethyst_error", version = "0.3.0" } | ||
crossbeam-queue = "0.1.2" | ||
derivative = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst_core" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["Simon Rönnberg <[email protected]>"] | ||
edition = "2018" | ||
description = "Amethyst core" | ||
|
@@ -34,7 +34,7 @@ derivative = "1.0" | |
thread_profiler = { version = "0.3", optional = true } | ||
|
||
[dev-dependencies] | ||
amethyst = { path = "..", version = "0.13.0" } | ||
amethyst = { path = "..", version = "0.13.1" } | ||
ron = "0.5.1" | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst_derive" | ||
version = "0.6.0" | ||
version = "0.6.1" | ||
authors = ["Simon Rönnberg <[email protected]>"] | ||
edition = "2018" | ||
description = "Amethyst derive" | ||
|
@@ -22,8 +22,8 @@ proc-macro2 = "1.0" | |
proc_macro_roids = "0.6" | ||
|
||
[dev-dependencies] | ||
amethyst_core = { path = "../amethyst_core", version = "0.8.0" } | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.9.0" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.8.1" } | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.9.1" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.3.0" } | ||
amethyst_test = { path = "../amethyst_test", version = "0.4.0" } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst_gltf" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["Rhuagh <[email protected]>"] | ||
edition = "2018" | ||
description = "GLTF asset loading" | ||
|
@@ -15,9 +15,9 @@ license = "MIT/Apache-2.0" | |
travis-ci = { repository = "amethyst/amethyst" } | ||
|
||
[dependencies] | ||
amethyst_assets = { path = "../amethyst_assets/", version = "0.9.0" } | ||
amethyst_animation = { path = "../amethyst_animation/", version = "0.8.0" } | ||
amethyst_core = { path = "../amethyst_core/", version = "0.8.0" } | ||
amethyst_assets = { path = "../amethyst_assets/", version = "0.9.1" } | ||
amethyst_animation = { path = "../amethyst_animation/", version = "0.8.1" } | ||
amethyst_core = { path = "../amethyst_core/", version = "0.8.1" } | ||
amethyst_error = { path = "../amethyst_error/", version = "0.3.0" } | ||
amethyst_rendy = { path = "../amethyst_rendy", version = "0.3.0" } | ||
err-derive = "0.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst_input" | ||
version = "0.9.0" | ||
version = "0.9.1" | ||
authors = ["Rhuagh <[email protected]>", "Xaeroxe <[email protected]>"] | ||
edition = "2018" | ||
description = "Input rebinding " | ||
|
@@ -15,7 +15,7 @@ license = "MIT/Apache-2.0" | |
travis-ci = { repository = "amethyst/amethyst" } | ||
|
||
[dependencies] | ||
amethyst_core = { path = "../amethyst_core/", version = "0.8.0" } | ||
amethyst_core = { path = "../amethyst_core/", version = "0.8.1" } | ||
amethyst_error = { path = "../amethyst_error/", version = "0.3.0" } | ||
amethyst_config = { path = "../amethyst_config/", version = "0.12.0" } | ||
amethyst_window = { path = "../amethyst_window/", version = "0.3.0" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst_locale" | ||
version = "0.7.0" | ||
version = "0.7.1" | ||
authors = ["Joël Lupien <[email protected]>"] | ||
readme = "README.md" | ||
edition = "2018" | ||
|
@@ -20,8 +20,8 @@ repository = "https://github.com/amethyst/amethyst" | |
travis-ci = { repository = "amethyst/amethyst" } | ||
|
||
[dependencies] | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.9.0" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.8.0" } | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.9.1" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.8.1" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.3.0" } | ||
serde = { version = "1.0", features = ["derive"] } | ||
fluent = "0.7.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst_network" | ||
version = "0.6.0" | ||
version = "0.6.1" | ||
authors = [ | ||
"Joël Lupien (Jojolepro) <[email protected]>", | ||
"Lucio Franco (LucioFranco) <[email protected]>", | ||
|
@@ -22,7 +22,7 @@ profiler = [ "thread_profiler/thread_profiler" ] | |
nightly = [ "amethyst_core/nightly" ] | ||
|
||
[dependencies] | ||
amethyst_core = { path = "../amethyst_core", version = "0.8.0" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.8.1" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.3.0" } | ||
serde = { version = "1", features = ["derive"] } | ||
shrev = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst_tiles" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Walter Pearce <[email protected]>"] | ||
edition = "2018" | ||
description = "2D and 3D Tile Support Library" | ||
|
@@ -16,9 +16,9 @@ appveyor = { repository = "amethyst/amethyst" } | |
travis-ci = { repository = "amethyst/amethyst" } | ||
|
||
[dependencies] | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.9.0" } | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.9.1" } | ||
amethyst_rendy = { path = "../amethyst_rendy", version = "0.3.0" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.8.0" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.8.1" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.3.0" } | ||
amethyst_window = { path = "../amethyst_window", version = "0.3.0" } | ||
log = { version = "0.4.6", features = ["serde"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "amethyst_ui" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
authors = ["Jacob Kiesel <[email protected]>", "Joël Lupien <[email protected]>"] | ||
edition = "2018" | ||
description = "Amethyst UI crate" | ||
|
@@ -13,12 +13,12 @@ repository = "https://github.com/amethyst/amethyst" | |
license = "MIT/Apache-2.0" | ||
|
||
[dependencies] | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.9.0" } | ||
amethyst_assets = { path = "../amethyst_assets", version = "0.9.1" } | ||
amethyst_audio = { path = "../amethyst_audio", version = "0.8.0"} | ||
amethyst_core = { path = "../amethyst_core", version = "0.8.0" } | ||
amethyst_derive = { path = "../amethyst_derive", version = "0.6.0" } | ||
amethyst_core = { path = "../amethyst_core", version = "0.8.1" } | ||
amethyst_derive = { path = "../amethyst_derive", version = "0.6.1" } | ||
amethyst_error = { path = "../amethyst_error", version = "0.3.0" } | ||
amethyst_input = { path = "../amethyst_input", version = "0.9.0" } | ||
amethyst_input = { path = "../amethyst_input", version = "0.9.1" } | ||
amethyst_rendy = { path = "../amethyst_rendy", version = "0.3.0" } | ||
amethyst_window = { path = "../amethyst_window", version = "0.3.0" } | ||
clipboard = "0.5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters