Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 0.2.0 #520

Merged
merged 1 commit into from
Sep 19, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## Version 0.2.0 (2020-9-19)

### Added

- [Task System for Bevy][384]
Expand Down Expand Up @@ -67,6 +69,7 @@
- [Initialize App.schedule systems when running the app][444]
- [Fix missing asset info path for synchronous loading][486]
- [fix font atlas overflow][495]
- [do not assume font handle is present in assets][490]

### Internal Improvements
- Many improvements to Bevy's CI [#325][325], [#349][349], [#357][357], [#373][373], [#423][423]
Expand Down Expand Up @@ -120,6 +123,7 @@
[478]: https://github.com/bevyengine/bevy/pull/478
[485]: https://github.com/bevyengine/bevy/pull/485
[486]: https://github.com/bevyengine/bevy/pull/486
[490]: https://github.com/bevyengine/bevy/pull/490
[491]: https://github.com/bevyengine/bevy/pull/491
[495]: https://github.com/bevyengine/bevy/pull/495
[496]: https://github.com/bevyengine/bevy/pull/496
Expand Down
50 changes: 25 additions & 25 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand Down Expand Up @@ -60,31 +60,31 @@ exclude = ["benches"]

[dependencies]
# bevy
bevy_app = { path = "crates/bevy_app", version = "0.1" }
bevy_asset = { path = "crates/bevy_asset", version = "0.1" }
bevy_type_registry = { path = "crates/bevy_type_registry", version = "0.1" }
bevy_core = { path = "crates/bevy_core", version = "0.1" }
bevy_diagnostic = { path = "crates/bevy_diagnostic", version = "0.1" }
bevy_ecs = { path = "crates/bevy_ecs", version = "0.1" }
bevy_input = { path = "crates/bevy_input", version = "0.1" }
bevy_math = { path = "crates/bevy_math", version = "0.1" }
bevy_property = { path = "crates/bevy_property", version = "0.1" }
bevy_scene = { path = "crates/bevy_scene", version = "0.1" }
bevy_transform = { path = "crates/bevy_transform", version = "0.1" }
bevy_utils = { path = "crates/bevy_utils", version = "0.1" }
bevy_window = { path = "crates/bevy_window", version = "0.1" }
bevy_tasks = { path = "crates/bevy_tasks", version = "0.1" }
bevy_app= { path = "crates/bevy_app", version = "0.2" }
bevy_asset= { path = "crates/bevy_asset", version = "0.2" }
bevy_type_registry= { path = "crates/bevy_type_registry", version = "0.2" }
bevy_core= { path = "crates/bevy_core", version = "0.2" }
bevy_diagnostic= { path = "crates/bevy_diagnostic", version = "0.2" }
bevy_ecs= { path = "crates/bevy_ecs", version = "0.2" }
bevy_input= { path = "crates/bevy_input", version = "0.2" }
bevy_math= { path = "crates/bevy_math", version = "0.2" }
bevy_property= { path = "crates/bevy_property", version = "0.2" }
bevy_scene= { path = "crates/bevy_scene", version = "0.2" }
bevy_transform= { path = "crates/bevy_transform", version = "0.2" }
bevy_utils= { path = "crates/bevy_utils", version = "0.2" }
bevy_window= { path = "crates/bevy_window", version = "0.2" }
bevy_tasks= { path = "crates/bevy_tasks", version = "0.2" }
# bevy (optional)
bevy_audio = { path = "crates/bevy_audio", optional = true, version = "0.1" }
bevy_gltf = { path = "crates/bevy_gltf", optional = true, version = "0.1" }
bevy_pbr = { path = "crates/bevy_pbr", optional = true, version = "0.1" }
bevy_render = { path = "crates/bevy_render", optional = true, version = "0.1" }
bevy_sprite = { path = "crates/bevy_sprite", optional = true, version = "0.1" }
bevy_text = { path = "crates/bevy_text", optional = true, version = "0.1" }
bevy_ui = { path = "crates/bevy_ui", optional = true, version = "0.1" }
bevy_wgpu = { path = "crates/bevy_wgpu", optional = true, version = "0.1" }
bevy_winit = { path = "crates/bevy_winit", optional = true, version = "0.1" }
bevy_gilrs = { path = "crates/bevy_gilrs", optional = true, version = "0.1" }
bevy_audio = { path = "crates/bevy_audio", optional = true, version = "0.2" }
bevy_gltf = { path = "crates/bevy_gltf", optional = true, version = "0.2" }
bevy_pbr = { path = "crates/bevy_pbr", optional = true, version = "0.2" }
bevy_render = { path = "crates/bevy_render", optional = true, version = "0.2" }
bevy_sprite = { path = "crates/bevy_sprite", optional = true, version = "0.2" }
bevy_text = { path = "crates/bevy_text", optional = true, version = "0.2" }
bevy_ui = { path = "crates/bevy_ui", optional = true, version = "0.2" }
bevy_wgpu = { path = "crates/bevy_wgpu", optional = true, version = "0.2" }
bevy_winit = { path = "crates/bevy_winit", optional = true, version = "0.2" }
bevy_gilrs = { path = "crates/bevy_gilrs", optional = true, version = "0.2" }

[dev-dependencies]
rand = "0.7.3"
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_app"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand All @@ -17,10 +17,10 @@ dynamic_plugins = ["libloading"]

[dependencies]
# bevy
bevy_derive = { path = "../bevy_derive", version = "0.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
bevy_tasks = { path = "../bevy_tasks", version = "0.1" }
bevy_math = { path = "../bevy_math", version = "0.1" }
bevy_derive= { path = "../bevy_derive", version = "0.2" }
bevy_ecs= { path = "../bevy_ecs", version = "0.2" }
bevy_tasks= { path = "../bevy_tasks", version = "0.2" }
bevy_math= { path = "../bevy_math", version = "0.2" }

# other
libloading = { version = "0.6", optional = true }
Expand Down
12 changes: 6 additions & 6 deletions crates/bevy_asset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_asset"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand All @@ -18,11 +18,11 @@ filesystem_watcher = ["notify"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" }
bevy_property = { path = "../bevy_property", version = "0.1" }
bevy_utils = { path = "../bevy_utils", version = "0.1" }
bevy_app= { path = "../bevy_app", version = "0.2" }
bevy_ecs= { path = "../bevy_ecs", version = "0.2" }
bevy_type_registry= { path = "../bevy_type_registry", version = "0.2" }
bevy_property= { path = "../bevy_property", version = "0.2" }
bevy_utils= { path = "../bevy_utils", version = "0.2" }

# other
uuid = { version = "0.8", features = ["v4", "serde"] }
Expand Down
8 changes: 4 additions & 4 deletions crates/bevy_audio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_audio"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand All @@ -14,9 +14,9 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.1" }
bevy_asset = { path = "../bevy_asset", version = "0.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
bevy_app= { path = "../bevy_app", version = "0.2" }
bevy_asset= { path = "../bevy_asset", version = "0.2" }
bevy_ecs= { path = "../bevy_ecs", version = "0.2" }

# other
anyhow = "1.0"
Expand Down
16 changes: 8 additions & 8 deletions crates/bevy_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_core"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand All @@ -19,13 +19,13 @@ dynamic_plugins = [
]

[dependencies]
bevy_app = { path = "../bevy_app", version = "0.1" }
bevy_derive = { path = "../bevy_derive", version = "0.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
bevy_property = { path = "../bevy_property", version = "0.1" }
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" }
bevy_math = { path = "../bevy_math", version = "0.1" }
bevy_utils = { path = "../bevy_utils", version = "0.1" }
bevy_app= { path = "../bevy_app", version = "0.2" }
bevy_derive= { path = "../bevy_derive", version = "0.2" }
bevy_ecs= { path = "../bevy_ecs", version = "0.2" }
bevy_property= { path = "../bevy_property", version = "0.2" }
bevy_type_registry= { path = "../bevy_type_registry", version = "0.2" }
bevy_math= { path = "../bevy_math", version = "0.2" }
bevy_utils= { path = "../bevy_utils", version = "0.2" }

[target.'cfg(target_arch = "wasm32")'.dependencies]
instant = "0.1.6"
2 changes: 1 addition & 1 deletion crates/bevy_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_derive"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_diagnostic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_diagnostic"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand All @@ -17,10 +17,10 @@ profiler = ["bevy_ecs/profiler"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.1" }
bevy_core = { path = "../bevy_core", version = "0.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
bevy_utils = { path = "../bevy_utils", version = "0.1" }
bevy_app= { path = "../bevy_app", version = "0.2" }
bevy_core= { path = "../bevy_core", version = "0.2" }
bevy_ecs= { path = "../bevy_ecs", version = "0.2" }
bevy_utils= { path = "../bevy_utils", version = "0.2" }

# other
uuid = { version = "0.8", features = ["v4", "serde"] }
Expand Down
8 changes: 4 additions & 4 deletions crates/bevy_ecs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_ecs"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand All @@ -17,9 +17,9 @@ categories = ["game-engines", "data-structures"]
profiler = []

[dependencies]
bevy_hecs = { path = "hecs", features = ["macros", "serialize"], version = "0.1" }
bevy_tasks = { path = "../bevy_tasks", version = "0.1" }
bevy_utils = { path = "../bevy_utils", version = "0.1" }
bevy_hecs = { path = "hecs", features = ["macros", "serialize"], version = "0.2" }
bevy_tasks= { path = "../bevy_tasks", version = "0.2" }
bevy_utils= { path = "../bevy_utils", version = "0.2" }
rand = "0.7.3"
fixedbitset = "0.3.1"
downcast-rs = "1.2.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/bevy_ecs/hecs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_hecs"
version = "0.1.3"
version = "0.2.0"
description = "Bevy fork of hecs: a fast, minimal, and ergonomic entity-component-system"
authors = [
"Benjamin Saunders <ben.e.saunders@gmail.com>",
Expand All @@ -27,8 +27,8 @@ macros = ["bevy_hecs_macros", "lazy_static"]
serialize = ["serde"]

[dependencies]
bevy_hecs_macros = { path = "macros", version = "0.1.3", optional = true }
bevy_utils = { path = "../../bevy_utils", version = "0.1" }
bevy_hecs_macros = { path = "macros", version = "0.2", optional = true }
bevy_utils= { path = "../../bevy_utils", version = "0.2" }
lazy_static = { version = "1.4.0", optional = true, features = ["spin_no_std"] }
serde = { version = "1", features = ["derive"], optional = true}
rand = "0.7.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_ecs/hecs/macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_hecs_macros"
version = "0.1.3"
version = "0.2.0"
description = "Bevy fork of hecs-macros: procedural macro definitions for hecs"
authors = ["Benjamin Saunders <ben.e.saunders@gmail.com>"]
edition = "2018"
Expand Down
8 changes: 4 additions & 4 deletions crates/bevy_gilrs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_gilrs"
version = "0.1.0"
version = "0.2.0"
edition = "2018"
authors = ["Bevy Contributors <bevyengine@gmail.com>", "Carter Anderson <mcanders1@gmail.com>"]
description = "Gamepad system made using Gilrs for Bevy Engine"
Expand All @@ -11,9 +11,9 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
bevy_input = { path = "../bevy_input", version = "0.1" }
bevy_app= { path = "../bevy_app", version = "0.2" }
bevy_ecs= { path = "../bevy_ecs", version = "0.2" }
bevy_input= { path = "../bevy_input", version = "0.2" }

# other
gilrs = "0.7.4"
Expand Down
8 changes: 4 additions & 4 deletions crates/bevy_gltf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_gltf"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand All @@ -14,9 +14,9 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.1" }
bevy_asset = { path = "../bevy_asset", version = "0.1" }
bevy_render = { path = "../bevy_render", version = "0.1" }
bevy_app= { path = "../bevy_app", version = "0.2" }
bevy_asset= { path = "../bevy_asset", version = "0.2" }
bevy_render= { path = "../bevy_render", version = "0.2" }

# other
gltf = { version = "0.15.2", default-features = false, features = ["utils"] }
Expand Down
10 changes: 5 additions & 5 deletions crates/bevy_input/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_input"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand All @@ -18,10 +18,10 @@ serialize = ["serde"]

[dependencies]
# bevy
bevy_app = { path = "../bevy_app", version = "0.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
bevy_math = { path = "../bevy_math", version = "0.1" }
bevy_utils = { path = "../bevy_utils", version = "0.1" }
bevy_app= { path = "../bevy_app", version = "0.2" }
bevy_ecs= { path = "../bevy_ecs", version = "0.2" }
bevy_math= { path = "../bevy_math", version = "0.2" }
bevy_utils= { path = "../bevy_utils", version = "0.2" }

# other
serde = { version = "1", features = ["derive"], optional = true }
2 changes: 1 addition & 1 deletion crates/bevy_math/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_math"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand Down
24 changes: 12 additions & 12 deletions crates/bevy_pbr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_pbr"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand All @@ -13,14 +13,14 @@ license = "MIT"
keywords = ["bevy"]

[dependencies]
bevy_app = { path = "../bevy_app", version = "0.1" }
bevy_asset = { path = "../bevy_asset", version = "0.1" }
bevy_core = { path = "../bevy_core", version = "0.1" }
bevy_derive = { path = "../bevy_derive", version = "0.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
bevy_math = { path = "../bevy_math", version = "0.1" }
bevy_property = { path = "../bevy_property", version = "0.1" }
bevy_render = { path = "../bevy_render", version = "0.1" }
bevy_transform = { path = "../bevy_transform", version = "0.1" }
bevy_type_registry = { path = "../bevy_type_registry", version = "0.1" }
bevy_window = { path = "../bevy_window", version = "0.1" }
bevy_app= { path = "../bevy_app", version = "0.2" }
bevy_asset= { path = "../bevy_asset", version = "0.2" }
bevy_core= { path = "../bevy_core", version = "0.2" }
bevy_derive= { path = "../bevy_derive", version = "0.2" }
bevy_ecs= { path = "../bevy_ecs", version = "0.2" }
bevy_math= { path = "../bevy_math", version = "0.2" }
bevy_property= { path = "../bevy_property", version = "0.2" }
bevy_render= { path = "../bevy_render", version = "0.2" }
bevy_transform= { path = "../bevy_transform", version = "0.2" }
bevy_type_registry= { path = "../bevy_type_registry", version = "0.2" }
bevy_window= { path = "../bevy_window", version = "0.2" }
10 changes: 5 additions & 5 deletions crates/bevy_property/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_property"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = [
"Bevy Contributors <bevyengine@gmail.com>",
Expand All @@ -14,10 +14,10 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_ecs = { path = "../bevy_ecs", version = "0.1" }
bevy_math = { path = "../bevy_math", version = "0.1" }
bevy_property_derive = { path = "bevy_property_derive", version = "0.1" }
bevy_utils = { path = "../bevy_utils", version = "0.1" }
bevy_ecs= { path = "../bevy_ecs", version = "0.2" }
bevy_math= { path = "../bevy_math", version = "0.2" }
bevy_property_derive= { path = "bevy_property_derive", version = "0.2" }
bevy_utils= { path = "../bevy_utils", version = "0.2" }

# other
erased-serde = "0.3"
Expand Down
Loading