Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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
bors[bot] and distransient authored Oct 3, 2019
2 parents 51b7198 + 1105c74 commit a304ad8
Show file tree
Hide file tree
Showing 12 changed files with 59 additions and 44 deletions.
22 changes: 11 additions & 11 deletions Cargo.toml
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"
Expand Down Expand Up @@ -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"] }
Expand Down
10 changes: 5 additions & 5 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.8.0"
version = "0.8.1"
authors = ["Simon Rönnberg <[email protected]>"]
edition = "2018"
description = "Animation support for Amethyst"
Expand All @@ -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"
Expand Down
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.9.0"
version = "0.9.1"
authors = ["torkleyy <[email protected]>"]
readme = "README.md"
edition = "2018"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 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.8.0"
version = "0.8.1"
authors = ["Simon Rönnberg <[email protected]>"]
edition = "2018"
description = "Amethyst core"
Expand Down Expand Up @@ -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]
Expand Down
6 changes: 3 additions & 3 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.6.0"
version = "0.6.1"
authors = ["Simon Rönnberg <[email protected]>"]
edition = "2018"
description = "Amethyst derive"
Expand All @@ -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" }

Expand Down
8 changes: 4 additions & 4 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.8.0"
version = "0.8.1"
authors = ["Rhuagh <[email protected]>"]
edition = "2018"
description = "GLTF asset loading"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 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.9.0"
version = "0.9.1"
authors = ["Rhuagh <[email protected]>", "Xaeroxe <[email protected]>"]
edition = "2018"
description = "Input rebinding "
Expand All @@ -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" }
Expand Down
6 changes: 3 additions & 3 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.7.0"
version = "0.7.1"
authors = ["Joël Lupien <[email protected]>"]
readme = "README.md"
edition = "2018"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 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.6.0"
version = "0.6.1"
authors = [
"Joël Lupien (Jojolepro) <[email protected]>",
"Lucio Franco (LucioFranco) <[email protected]>",
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions amethyst_tiles/Cargo.toml
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"
Expand All @@ -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"] }
Expand Down
10 changes: 5 additions & 5 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.8.0"
version = "0.8.1"
authors = ["Jacob Kiesel <[email protected]>", "Joël Lupien <[email protected]>"]
edition = "2018"
description = "Amethyst UI crate"
Expand All @@ -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"
Expand Down
17 changes: 16 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ The format is based on [Keep a Changelog][kc], and this project adheres to
[sv]: http://semver.org/

## [Unreleased]

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security

## [0.13.1] - 2019-10-3

### Added

Expand Down Expand Up @@ -1032,7 +1046,8 @@ extra bounds from `AnimatablePrefab` and `AnimationSetPrefab` ([#1435])

* Initial release

[Unreleased]: https://github.com/amethyst/amethyst/compare/v0.13.0...HEAD
[Unreleased]: https://github.com/amethyst/amethyst/compare/v0.13.1...HEAD
[0.13.1]: https://github.com/amethyst/amethyst/compare/v0.13.0...v0.13.1
[0.13.0]: https://github.com/amethyst/amethyst/compare/v0.12.0...v0.13.0
[0.12.0]: https://github.com/amethyst/amethyst/compare/v0.11.0...v0.12.0
[0.11.0]: https://github.com/amethyst/amethyst/compare/v0.10.0...v0.11.0
Expand Down

0 comments on commit a304ad8

Please sign in to comment.