Skip to content

Commit

Permalink
v0.16 prep
Browse files Browse the repository at this point in the history
  • Loading branch information
aevyrie committed Oct 30, 2023
1 parent ed28965 commit 46ba7ad
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# UNRELEASED
# 0.16.0

## Highlights

Expand Down
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.15.0"
version = "0.16.0"
authors = ["Aevyrie <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -37,15 +37,15 @@ bevy_egui = { optional = true, version = "0.21" }
bevy_rapier3d = { optional = true, version = "0.22" }

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

[dev-dependencies]
bevy = { version = "0.11", 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.15.0"
version = "0.16.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -20,8 +20,8 @@ bevy_render = { version = "0.11", default-features = false }

bevy_egui = "0.21"
# Local
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.15" }
bevy_picking_selection = { path = "../../crates/bevy_picking_selection", optional = true, version = "0.15" }
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.16" }
bevy_picking_selection = { path = "../../crates/bevy_picking_selection", optional = true, version = "0.16" }

[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.15.0"
version = "0.16.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -24,4 +24,4 @@ bevy_window = { version = "0.11", default-features = false }

bevy_rapier3d = "0.22"
# Local
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.15" }
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.16" }
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.15.0"
version = "0.16.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -22,4 +22,4 @@ bevy_window = { version = "0.11", default-features = false }

bevy_mod_raycast = "0.15"
# Local
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.15" }
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.16" }
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.15.0"
version = "0.16.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -22,4 +22,4 @@ bevy_sprite = { version = "0.11", default-features = false }
bevy_transform = { version = "0.11", default-features = false }
bevy_window = { version = "0.11", default-features = false }
# Local
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.15" }
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.16" }
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.15.0"
version = "0.16.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -21,4 +21,4 @@ bevy_transform = { version = "0.11", default-features = false }
bevy_window = { version = "0.11", default-features = false }
bevy_ui = { version = "0.11", default-features = false }
# Local
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.15" }
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.16" }
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.15.0"
version = "0.16.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 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.15.0"
version = "0.16.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -21,8 +21,8 @@ bevy_render = { version = "0.11", optional = true, default-features = false }
bevy_pbr = { version = "0.11", optional = true, default-features = false }
bevy_sprite = { version = "0.11", optional = true, default-features = false }

bevy_picking_core = { path = "../bevy_picking_core", version = "0.15" }
bevy_picking_selection = { optional = true, path = "../bevy_picking_selection", version = "0.15" }
bevy_picking_core = { path = "../bevy_picking_core", version = "0.16" }
bevy_picking_selection = { optional = true, path = "../bevy_picking_selection", version = "0.16" }

[features]
selection = ["bevy_picking_selection"]
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.15.0"
version = "0.16.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -23,8 +23,8 @@ bevy_render = { version = "0.11", default-features = false }
bevy_utils = { version = "0.11", default-features = false }
bevy_window = { version = "0.11", default-features = false }

bevy_picking_core = { path = "../bevy_picking_core", version = "0.15" }
bevy_picking_selection = { optional = true, path = "../bevy_picking_selection", version = "0.15" }
bevy_picking_core = { path = "../bevy_picking_core", version = "0.16" }
bevy_picking_selection = { optional = true, path = "../bevy_picking_selection", version = "0.16" }

[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.15.0"
version = "0.16.0"
edition = "2021"
authors = ["Aevyrie <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand All @@ -21,4 +21,4 @@ bevy_utils = { version = "0.11", default-features = false }

bevy_eventlistener = "0.5"

bevy_picking_core = { path = "../bevy_picking_core", version = "0.15" }
bevy_picking_core = { path = "../bevy_picking_core", version = "0.16" }

0 comments on commit 46ba7ad

Please sign in to comment.