Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit e71492c

Browse files
committed
v0.14
1 parent 5262e14 commit e71492c

File tree

10 files changed

+31
-31
lines changed

10 files changed

+31
-31
lines changed

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_picking"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
authors = ["Aevyrie <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -24,15 +24,15 @@ bevy_egui = { optional = true, version = "0.20" }
2424
bevy_rapier3d = { optional = true, version = "0.21" }
2525

2626
# Local
27-
bevy_picking_core = { path = "crates/bevy_picking_core", version = "0.1" }
28-
bevy_picking_input = { path = "crates/bevy_picking_input", version = "0.1" }
29-
bevy_picking_selection = { optional = true, path = "crates/bevy_picking_selection", version = "0.1" }
30-
bevy_picking_highlight = { optional = true, path = "crates/bevy_picking_highlight", version = "0.1" }
31-
bevy_picking_raycast = { optional = true, path = "backends/bevy_picking_raycast", version = "0.1" }
32-
bevy_picking_ui = { optional = true, path = "backends/bevy_picking_ui", version = "0.1" }
33-
bevy_picking_rapier = { optional = true, path = "backends/bevy_picking_rapier", version = "0.1" }
34-
bevy_picking_sprite = { optional = true, path = "backends/bevy_picking_sprite", version = "0.1" }
35-
bevy_picking_egui = { optional = true, path = "backends/bevy_picking_egui", version = "0.1" }
27+
bevy_picking_core = { path = "crates/bevy_picking_core", version = "0.2" }
28+
bevy_picking_input = { path = "crates/bevy_picking_input", version = "0.2" }
29+
bevy_picking_selection = { optional = true, path = "crates/bevy_picking_selection", version = "0.2" }
30+
bevy_picking_highlight = { optional = true, path = "crates/bevy_picking_highlight", version = "0.2" }
31+
bevy_picking_raycast = { optional = true, path = "backends/bevy_picking_raycast", version = "0.2" }
32+
bevy_picking_ui = { optional = true, path = "backends/bevy_picking_ui", version = "0.2" }
33+
bevy_picking_rapier = { optional = true, path = "backends/bevy_picking_rapier", version = "0.2" }
34+
bevy_picking_sprite = { optional = true, path = "backends/bevy_picking_sprite", version = "0.2" }
35+
bevy_picking_egui = { optional = true, path = "backends/bevy_picking_egui", version = "0.2" }
3636

3737
[dev-dependencies]
3838
bevy = { version = "0.10", default-features = false, features = [

backends/bevy_picking_egui/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_picking_egui"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -16,8 +16,8 @@ resolver = "2"
1616
bevy = { version = "0.10", default-features = false }
1717
bevy_egui = "0.20"
1818
# Local
19-
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.1" }
20-
bevy_picking_selection = { path = "../../crates/bevy_picking_selection", optional = true, version = "0.1" }
19+
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.2" }
20+
bevy_picking_selection = { path = "../../crates/bevy_picking_selection", optional = true, version = "0.2" }
2121

2222
[features]
2323
selection = ["bevy_picking_selection"]

backends/bevy_picking_rapier/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_picking_rapier"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -18,4 +18,4 @@ bevy = { version = "0.10", default-features = false, features = [
1818
] }
1919
bevy_rapier3d = "0.21"
2020
# Local
21-
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.1" }
21+
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.2" }

backends/bevy_picking_raycast/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_picking_raycast"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -18,4 +18,4 @@ bevy = { version = "0.10", default-features = false, features = [
1818
] }
1919
bevy_mod_raycast = "0.8"
2020
# Local
21-
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.1" }
21+
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.2" }

backends/bevy_picking_sprite/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_picking_sprite"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -19,4 +19,4 @@ bevy = { version = "0.10", default-features = false, features = [
1919
"bevy_render",
2020
] }
2121
# Local
22-
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.1" }
22+
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.2" }

backends/bevy_picking_ui/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_picking_ui"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -15,4 +15,4 @@ resolver = "2"
1515
[dependencies]
1616
bevy = { version = "0.10", default-features = false }
1717
# Local
18-
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.1" }
18+
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.2" }

crates/bevy_picking_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_picking_core"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"

crates/bevy_picking_highlight/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_picking_highlight"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -13,9 +13,9 @@ resolver = "2"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
bevy_picking_core = { path = "../bevy_picking_core", version = "0.1" }
17-
bevy_picking_input = { path = "../bevy_picking_input", version = "0.1" }
18-
bevy_picking_selection = { optional = true, path = "../bevy_picking_selection", version = "0.1" }
16+
bevy_picking_core = { path = "../bevy_picking_core", version = "0.2" }
17+
bevy_picking_input = { path = "../bevy_picking_input", version = "0.2" }
18+
bevy_picking_selection = { optional = true, path = "../bevy_picking_selection", version = "0.2" }
1919
bevy = { version = "0.10", default-features = false, features = [
2020
"bevy_render",
2121
"bevy_asset",

crates/bevy_picking_input/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_picking_input"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -16,8 +16,8 @@ resolver = "2"
1616
bevy = { version = "0.10", default-features = false, features = [
1717
"bevy_render",
1818
] }
19-
bevy_picking_core = { path = "../bevy_picking_core", version = "0.1" }
20-
bevy_picking_selection = { optional = true, path = "../bevy_picking_selection", version = "0.1" }
19+
bevy_picking_core = { path = "../bevy_picking_core", version = "0.2" }
20+
bevy_picking_selection = { optional = true, path = "../bevy_picking_selection", version = "0.2" }
2121

2222
[features]
2323
selection = ["bevy_picking_selection"]

crates/bevy_picking_selection/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_picking_selection"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -13,7 +13,7 @@ resolver = "2"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
bevy_picking_core = { path = "../bevy_picking_core", version = "0.1" }
16+
bevy_picking_core = { path = "../bevy_picking_core", version = "0.2" }
1717
bevy = { version = "0.10", default-features = false, features = [
1818
"bevy_render",
1919
] }

0 commit comments

Comments
 (0)