Skip to content

Commit

Permalink
release: 0.3.0 (bevyengine#783)
Browse files Browse the repository at this point in the history
  • Loading branch information
cart authored Nov 3, 2020
1 parent 8d2d242 commit 9afe196
Show file tree
Hide file tree
Showing 31 changed files with 205 additions and 200 deletions.
52 changes: 26 additions & 26 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy"
version = "0.2.1"
version = "0.3.0"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand Down Expand Up @@ -57,32 +57,32 @@ exclude = ["benches"]

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

[dev-dependencies]
rand = "0.7.3"
Expand Down
8 changes: 4 additions & 4 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.1"
version = "0.3.0"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -14,9 +14,9 @@ keywords = ["bevy"]

[dependencies]
# bevy
bevy_derive = { path = "../bevy_derive", version = "0.2.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" }
bevy_utils = { path = "../bevy_utils", version = "0.2.1" }
bevy_derive = { path = "../bevy_derive", version = "0.3.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" }
bevy_utils = { path = "../bevy_utils", version = "0.3.0" }

# other
log = { version = "0.4", features = ["release_max_level_info"] }
Expand Down
14 changes: 7 additions & 7 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.1"
version = "0.3.0"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -18,12 +18,12 @@ filesystem_watcher = ["notify"]

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

# other
uuid = { version = "0.8", features = ["v4", "serde"] }
Expand Down
12 changes: 6 additions & 6 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.1"
version = "0.3.0"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -14,11 +14,11 @@ keywords = ["bevy"]

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

# other
anyhow = "1.0"
Expand Down
18 changes: 9 additions & 9 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.1"
version = "0.3.0"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -14,14 +14,14 @@ keywords = ["bevy"]


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

log = { version = "0.4", features = ["release_max_level_info"] }

Expand Down
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.1"
version = "0.3.0"
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.1"
version = "0.3.0"
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.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" }
bevy_app = { path = "../bevy_app", version = "0.3.0" }
bevy_core = { path = "../bevy_core", version = "0.3.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" }
bevy_utils = { path = "../bevy_utils", version = "0.3.0" }

# other
uuid = { version = "0.8", features = ["v4", "serde"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_dynamic_plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_dynamic_plugin"
version = "0.2.1"
version = "0.3.0"
authors = [
"Bevy Contributors <[email protected]>",
"Carter Anderson <[email protected]>",
Expand All @@ -16,7 +16,7 @@ keywords = ["bevy"]

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

# other
log = { version = "0.4", features = ["release_max_level_info"] }
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.1"
version = "0.3.0"
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.1" }
bevy_tasks = { path = "../bevy_tasks", version = "0.2.1" }
bevy_utils = { path = "../bevy_utils", version = "0.2.1" }
bevy_hecs = { path = "hecs", features = ["macros", "serialize"], version = "0.3.0" }
bevy_tasks = { path = "../bevy_tasks", version = "0.3.0" }
bevy_utils = { path = "../bevy_utils", version = "0.3.0" }
rand = "0.7.3"
thiserror = "1.0"
fixedbitset = "0.3.1"
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.1"
version = "0.3.0"
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.1", optional = true }
bevy_utils = { path = "../../bevy_utils", version = "0.2.1" }
bevy_hecs_macros = { path = "macros", version = "0.3.0", optional = true }
bevy_utils = { path = "../../bevy_utils", version = "0.3.0" }
lazy_static = { version = "1.4.0", optional = true, features = ["spin_no_std"] }
serde = { version = "1", features = ["derive"], optional = true}

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.1"
version = "0.3.0"
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.1"
version = "0.3.0"
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.1" }
bevy_ecs = { path = "../bevy_ecs", version = "0.2.1" }
bevy_input = { path = "../bevy_input", version = "0.2.1" }
bevy_app = { path = "../bevy_app", version = "0.3.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" }
bevy_input = { path = "../bevy_input", version = "0.3.0" }

# other
gilrs = "0.8.0"
Expand Down
20 changes: 10 additions & 10 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.1"
version = "0.3.0"
edition = "2018"
authors = [
"Bevy Contributors <[email protected]>",
Expand All @@ -14,15 +14,15 @@ keywords = ["bevy"]

[dependencies]
# bevy
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" }
bevy_pbr = { path = "../bevy_pbr", version = "0.2.1" }
bevy_render = { path = "../bevy_render", version = "0.2.1" }
bevy_transform = { path = "../bevy_transform", version = "0.2.1" }
bevy_math = { path = "../bevy_math", version = "0.2.1" }
bevy_scene = { path = "../bevy_scene", version = "0.2.1" }
bevy_type_registry = { path = "../bevy_type_registry", version = "0.2.1" }
bevy_app = { path = "../bevy_app", version = "0.3.0" }
bevy_asset = { path = "../bevy_asset", version = "0.3.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" }
bevy_pbr = { path = "../bevy_pbr", version = "0.3.0" }
bevy_render = { path = "../bevy_render", version = "0.3.0" }
bevy_transform = { path = "../bevy_transform", version = "0.3.0" }
bevy_math = { path = "../bevy_math", version = "0.3.0" }
bevy_scene = { path = "../bevy_scene", version = "0.3.0" }
bevy_type_registry = { path = "../bevy_type_registry", version = "0.3.0" }

# 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.1"
version = "0.3.0"
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.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" }
bevy_app = { path = "../bevy_app", version = "0.3.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" }
bevy_math = { path = "../bevy_math", version = "0.3.0" }
bevy_utils = { path = "../bevy_utils", version = "0.3.0" }

# 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.1"
version = "0.3.0"
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.1"
version = "0.3.0"
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.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" }
bevy_app = { path = "../bevy_app", version = "0.3.0" }
bevy_asset = { path = "../bevy_asset", version = "0.3.0" }
bevy_core = { path = "../bevy_core", version = "0.3.0" }
bevy_derive = { path = "../bevy_derive", version = "0.3.0" }
bevy_ecs = { path = "../bevy_ecs", version = "0.3.0" }
bevy_math = { path = "../bevy_math", version = "0.3.0" }
bevy_property = { path = "../bevy_property", version = "0.3.0" }
bevy_render = { path = "../bevy_render", version = "0.3.0" }
bevy_transform = { path = "../bevy_transform", version = "0.3.0" }
bevy_type_registry = { path = "../bevy_type_registry", version = "0.3.0" }
bevy_window = { path = "../bevy_window", version = "0.3.0" }
Loading

0 comments on commit 9afe196

Please sign in to comment.