Skip to content

Commit

Permalink
v0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
aevyrie committed Jul 7, 2023
1 parent 5262e14 commit e71492c
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 31 deletions.
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_mod_picking"
version = "0.13.0"
version = "0.14.0"
authors = ["Aevyrie <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -24,15 +24,15 @@ bevy_egui = { optional = true, version = "0.20" }
bevy_rapier3d = { optional = true, version = "0.21" }

# Local
bevy_picking_core = { path = "crates/bevy_picking_core", version = "0.1" }
bevy_picking_input = { path = "crates/bevy_picking_input", version = "0.1" }
bevy_picking_selection = { optional = true, path = "crates/bevy_picking_selection", version = "0.1" }
bevy_picking_highlight = { optional = true, path = "crates/bevy_picking_highlight", version = "0.1" }
bevy_picking_raycast = { optional = true, path = "backends/bevy_picking_raycast", version = "0.1" }
bevy_picking_ui = { optional = true, path = "backends/bevy_picking_ui", version = "0.1" }
bevy_picking_rapier = { optional = true, path = "backends/bevy_picking_rapier", version = "0.1" }
bevy_picking_sprite = { optional = true, path = "backends/bevy_picking_sprite", version = "0.1" }
bevy_picking_egui = { optional = true, path = "backends/bevy_picking_egui", version = "0.1" }
bevy_picking_core = { path = "crates/bevy_picking_core", version = "0.2" }
bevy_picking_input = { path = "crates/bevy_picking_input", version = "0.2" }
bevy_picking_selection = { optional = true, path = "crates/bevy_picking_selection", version = "0.2" }
bevy_picking_highlight = { optional = true, path = "crates/bevy_picking_highlight", version = "0.2" }
bevy_picking_raycast = { optional = true, path = "backends/bevy_picking_raycast", version = "0.2" }
bevy_picking_ui = { optional = true, path = "backends/bevy_picking_ui", version = "0.2" }
bevy_picking_rapier = { optional = true, path = "backends/bevy_picking_rapier", version = "0.2" }
bevy_picking_sprite = { optional = true, path = "backends/bevy_picking_sprite", version = "0.2" }
bevy_picking_egui = { optional = true, path = "backends/bevy_picking_egui", version = "0.2" }

[dev-dependencies]
bevy = { version = "0.10", default-features = false, features = [
Expand Down
6 changes: 3 additions & 3 deletions backends/bevy_picking_egui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_picking_egui"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -16,8 +16,8 @@ resolver = "2"
bevy = { version = "0.10", default-features = false }
bevy_egui = "0.20"
# Local
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.1" }
bevy_picking_selection = { path = "../../crates/bevy_picking_selection", optional = true, version = "0.1" }
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.2" }
bevy_picking_selection = { path = "../../crates/bevy_picking_selection", optional = true, version = "0.2" }

[features]
selection = ["bevy_picking_selection"]
Expand Down
4 changes: 2 additions & 2 deletions backends/bevy_picking_rapier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_picking_rapier"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -18,4 +18,4 @@ bevy = { version = "0.10", default-features = false, features = [
] }
bevy_rapier3d = "0.21"
# Local
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.1" }
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.2" }
4 changes: 2 additions & 2 deletions backends/bevy_picking_raycast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_picking_raycast"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -18,4 +18,4 @@ bevy = { version = "0.10", default-features = false, features = [
] }
bevy_mod_raycast = "0.8"
# Local
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.1" }
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.2" }
4 changes: 2 additions & 2 deletions backends/bevy_picking_sprite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_picking_sprite"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -19,4 +19,4 @@ bevy = { version = "0.10", default-features = false, features = [
"bevy_render",
] }
# Local
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.1" }
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.2" }
4 changes: 2 additions & 2 deletions backends/bevy_picking_ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_picking_ui"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -15,4 +15,4 @@ resolver = "2"
[dependencies]
bevy = { version = "0.10", default-features = false }
# Local
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.1" }
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.2" }
2 changes: 1 addition & 1 deletion crates/bevy_picking_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_picking_core"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions crates/bevy_picking_highlight/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_picking_highlight"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -13,9 +13,9 @@ resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bevy_picking_core = { path = "../bevy_picking_core", version = "0.1" }
bevy_picking_input = { path = "../bevy_picking_input", version = "0.1" }
bevy_picking_selection = { optional = true, path = "../bevy_picking_selection", version = "0.1" }
bevy_picking_core = { path = "../bevy_picking_core", version = "0.2" }
bevy_picking_input = { path = "../bevy_picking_input", version = "0.2" }
bevy_picking_selection = { optional = true, path = "../bevy_picking_selection", version = "0.2" }
bevy = { version = "0.10", default-features = false, features = [
"bevy_render",
"bevy_asset",
Expand Down
6 changes: 3 additions & 3 deletions crates/bevy_picking_input/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_picking_input"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -16,8 +16,8 @@ resolver = "2"
bevy = { version = "0.10", default-features = false, features = [
"bevy_render",
] }
bevy_picking_core = { path = "../bevy_picking_core", version = "0.1" }
bevy_picking_selection = { optional = true, path = "../bevy_picking_selection", version = "0.1" }
bevy_picking_core = { path = "../bevy_picking_core", version = "0.2" }
bevy_picking_selection = { optional = true, path = "../bevy_picking_selection", version = "0.2" }

[features]
selection = ["bevy_picking_selection"]
4 changes: 2 additions & 2 deletions crates/bevy_picking_selection/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_picking_selection"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -13,7 +13,7 @@ resolver = "2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
bevy_picking_core = { path = "../bevy_picking_core", version = "0.1" }
bevy_picking_core = { path = "../bevy_picking_core", version = "0.2" }
bevy = { version = "0.10", default-features = false, features = [
"bevy_render",
] }
Expand Down

0 comments on commit e71492c

Please sign in to comment.