Skip to content

Commit

Permalink
release: 0.2.1 (#533)
Browse files Browse the repository at this point in the history
  • Loading branch information
cart authored Sep 20, 2020
1 parent b05708f commit 74dba5f
Show file tree
Hide file tree
Showing 31 changed files with 193 additions and 183 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

## Unreleased

## Version 0.2.1 (2020-9-20)

### Fixed

- [Remove UI queue print][521]
- [Use async executor 1.3.0][526]

[521]: [https://github.com/bevyengine/bevy/pull/521]
[526]: [https://github.com/bevyengine/bevy/pull/526]

## Version 0.2.0 (2020-9-19)

### Added
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.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand Down Expand Up @@ -60,31 +60,31 @@ exclude = ["benches"]

[dependencies]
# bevy
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_app = { path = "crates/bevy_app", version = "0.2.1" }
bevy_asset = { path = "crates/bevy_asset", version = "0.2.1" }
bevy_type_registry = { path = "crates/bevy_type_registry", version = "0.2.1" }
bevy_core = { path = "crates/bevy_core", version = "0.2.1" }
bevy_diagnostic = { path = "crates/bevy_diagnostic", version = "0.2.1" }
bevy_ecs = { path = "crates/bevy_ecs", version = "0.2.1" }
bevy_input = { path = "crates/bevy_input", version = "0.2.1" }
bevy_math = { path = "crates/bevy_math", version = "0.2.1" }
bevy_property = { path = "crates/bevy_property", version = "0.2.1" }
bevy_scene = { path = "crates/bevy_scene", version = "0.2.1" }
bevy_transform = { path = "crates/bevy_transform", version = "0.2.1" }
bevy_utils = { path = "crates/bevy_utils", version = "0.2.1" }
bevy_window = { path = "crates/bevy_window", version = "0.2.1" }
bevy_tasks = { path = "crates/bevy_tasks", version = "0.2.1" }
# bevy (optional)
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" }
bevy_audio = { path = "crates/bevy_audio", optional = true, version = "0.2.1" }
bevy_gltf = { path = "crates/bevy_gltf", optional = true, version = "0.2.1" }
bevy_pbr = { path = "crates/bevy_pbr", optional = true, version = "0.2.1" }
bevy_render = { path = "crates/bevy_render", optional = true, version = "0.2.1" }
bevy_sprite = { path = "crates/bevy_sprite", optional = true, version = "0.2.1" }
bevy_text = { path = "crates/bevy_text", optional = true, version = "0.2.1" }
bevy_ui = { path = "crates/bevy_ui", optional = true, version = "0.2.1" }
bevy_wgpu = { path = "crates/bevy_wgpu", optional = true, version = "0.2.1" }
bevy_winit = { path = "crates/bevy_winit", optional = true, version = "0.2.1" }
bevy_gilrs = { path = "crates/bevy_gilrs", optional = true, version = "0.2.1" }

[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.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -17,10 +17,10 @@ dynamic_plugins = ["libloading"]

[dependencies]
# bevy
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" }
bevy_derive = { path = "../bevy_derive", version = "0.2.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" }
bevy_tasks = { path = "../bevy_tasks", version = "0.2.1" }
bevy_math = { path = "../bevy_math", version = "0.2.1" }

# 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.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -18,11 +18,11 @@ filesystem_watcher = ["notify"]

[dependencies]
# bevy
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" }
bevy_app = { path = "../bevy_app", version = "0.2.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" }
bevy_type_registry = { path = "../bevy_type_registry", version = "0.2.1" }
bevy_property = { path = "../bevy_property", version = "0.2.1" }
bevy_utils = { path = "../bevy_utils", version = "0.2.1" }

# 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.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -14,9 +14,9 @@ keywords = ["bevy"]

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

# 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.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -19,13 +19,13 @@ dynamic_plugins = [
]

[dependencies]
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" }
bevy_app = { path = "../bevy_app", version = "0.2.1" }
bevy_derive = { path = "../bevy_derive", version = "0.2.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" }
bevy_property = { path = "../bevy_property", version = "0.2.1" }
bevy_type_registry = { path = "../bevy_type_registry", version = "0.2.1" }
bevy_math = { path = "../bevy_math", version = "0.2.1" }
bevy_utils = { path = "../bevy_utils", version = "0.2.1" }

[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.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
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.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -17,10 +17,10 @@ profiler = ["bevy_ecs/profiler"]

[dependencies]
# bevy
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" }
bevy_app = { path = "../bevy_app", version = "0.2.1" }
bevy_core = { path = "../bevy_core", version = "0.2.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" }
bevy_utils = { path = "../bevy_utils", version = "0.2.1" }

# 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.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -17,9 +17,9 @@ categories = ["game-engines", "data-structures"]
profiler = []

[dependencies]
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" }
bevy_hecs = { path = "hecs", features = ["macros", "serialize"], version = "0.2.1" }
bevy_tasks = { path = "../bevy_tasks", version = "0.2.1" }
bevy_utils = { path = "../bevy_utils", version = "0.2.1" }
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.2.0"
version = "0.2.1"
description = "Bevy fork of hecs: a fast, minimal, and ergonomic entity-component-system"
authors = [
"Benjamin Saunders <[email protected]>",
Expand All @@ -27,8 +27,8 @@ macros = ["bevy_hecs_macros", "lazy_static"]
serialize = ["serde"]

[dependencies]
bevy_hecs_macros = { path = "macros", version = "0.2", optional = true }
bevy_utils= { path = "../../bevy_utils", version = "0.2" }
bevy_hecs_macros = { path = "macros", version = "0.2.1", optional = true }
bevy_utils = { path = "../../bevy_utils", version = "0.2.1" }
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.2.0"
version = "0.2.1"
description = "Bevy fork of hecs-macros: procedural macro definitions for hecs"
authors = ["Benjamin Saunders <[email protected]>"]
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.2.0"
version = "0.2.1"
edition = "2018"
authors = ["Bevy Contributors <[email protected]>", "Carter Anderson <[email protected]>"]
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.2" }
bevy_ecs= { path = "../bevy_ecs", version = "0.2" }
bevy_input= { path = "../bevy_input", version = "0.2" }
bevy_app = { path = "../bevy_app", version = "0.2.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" }
bevy_input = { path = "../bevy_input", version = "0.2.1" }

# 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.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -14,9 +14,9 @@ keywords = ["bevy"]

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

# 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.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -18,10 +18,10 @@ serialize = ["serde"]

[dependencies]
# bevy
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" }
bevy_app = { path = "../bevy_app", version = "0.2.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" }
bevy_math = { path = "../bevy_math", version = "0.2.1" }
bevy_utils = { path = "../bevy_utils", version = "0.2.1" }

# 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.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
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.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -13,14 +13,14 @@ license = "MIT"
keywords = ["bevy"]

[dependencies]
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" }
bevy_app = { path = "../bevy_app", version = "0.2.1" }
bevy_asset = { path = "../bevy_asset", version = "0.2.1" }
bevy_core = { path = "../bevy_core", version = "0.2.1" }
bevy_derive = { path = "../bevy_derive", version = "0.2.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" }
bevy_math = { path = "../bevy_math", version = "0.2.1" }
bevy_property = { path = "../bevy_property", version = "0.2.1" }
bevy_render = { path = "../bevy_render", version = "0.2.1" }
bevy_transform = { path = "../bevy_transform", version = "0.2.1" }
bevy_type_registry = { path = "../bevy_type_registry", version = "0.2.1" }
bevy_window = { path = "../bevy_window", version = "0.2.1" }
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.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -14,10 +14,10 @@ keywords = ["bevy"]

[dependencies]
# bevy
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" }
bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" }
bevy_math = { path = "../bevy_math", version = "0.2.1" }
bevy_property_derive = { path = "bevy_property_derive", version = "0.2.1" }
bevy_utils = { path = "../bevy_utils", version = "0.2.1" }

# other
erased-serde = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_property/bevy_property_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_property_derive"
version = "0.2.0"
version = "0.2.1"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand Down
Loading

0 comments on commit 74dba5f

Please sign in to comment.