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

Commit 757a1ed

Browse files
authored
0.19.0 release (#336)
1 parent bc2ba5f commit 757a1ed

File tree

13 files changed

+44
-35
lines changed

13 files changed

+44
-35
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1-
# UNRELEASED
1+
# 0.19.0
22

33
## Fixes:
44

55
- `HighlightPluginSettings::is_enabled` made public.
6+
- `bevy_ui` nodes with zero sized rects are ignored to fix a false positive.
7+
- Fixed touch pointer inputs being missed.
8+
9+
## Additions:
10+
11+
- Created a new `render_to_texture` example to showcase how to render viewport textures that support
12+
picking.
13+
- Added support for a range of compatible versions of egui and rapier, instead of being tied to a
14+
specific version of these crates.
615

716
# 0.18.0
817

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bevy_mod_picking"
3-
version = "0.18.2 "
3+
version = "0.19.0"
44
authors = ["Aevyrie <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -39,16 +39,16 @@ bevy_rapier3d = { optional = true, version = ">=0.25, <=0.26" }
3939
bevy_xpbd_3d = { optional = true, version = "0.4" }
4040

4141
# Local
42-
bevy_picking_core = { path = "crates/bevy_picking_core", version = "0.18" }
43-
bevy_picking_input = { path = "crates/bevy_picking_input", version = "0.18" }
44-
bevy_picking_selection = { optional = true, path = "crates/bevy_picking_selection", version = "0.18" }
45-
bevy_picking_highlight = { optional = true, path = "crates/bevy_picking_highlight", version = "0.18" }
46-
bevy_picking_raycast = { optional = true, path = "backends/bevy_picking_raycast", version = "0.18" }
47-
bevy_picking_ui = { optional = true, path = "backends/bevy_picking_ui", version = "0.18" }
48-
bevy_picking_rapier = { optional = true, path = "backends/bevy_picking_rapier", version = "0.18" }
49-
bevy_picking_sprite = { optional = true, path = "backends/bevy_picking_sprite", version = "0.18" }
50-
bevy_picking_egui = { optional = true, path = "backends/bevy_picking_egui", version = "0.18" }
51-
bevy_picking_xpbd = { optional = true, path = "backends/bevy_picking_xpbd", version = "0.18" }
42+
bevy_picking_core = { path = "crates/bevy_picking_core", version = "0.19" }
43+
bevy_picking_input = { path = "crates/bevy_picking_input", version = "0.19" }
44+
bevy_picking_selection = { optional = true, path = "crates/bevy_picking_selection", version = "0.19" }
45+
bevy_picking_highlight = { optional = true, path = "crates/bevy_picking_highlight", version = "0.19" }
46+
bevy_picking_raycast = { optional = true, path = "backends/bevy_picking_raycast", version = "0.19" }
47+
bevy_picking_ui = { optional = true, path = "backends/bevy_picking_ui", version = "0.19" }
48+
bevy_picking_rapier = { optional = true, path = "backends/bevy_picking_rapier", version = "0.19" }
49+
bevy_picking_sprite = { optional = true, path = "backends/bevy_picking_sprite", version = "0.19" }
50+
bevy_picking_egui = { optional = true, path = "backends/bevy_picking_egui", version = "0.19" }
51+
bevy_picking_xpbd = { optional = true, path = "backends/bevy_picking_xpbd", version = "0.19" }
5252

5353
[dev-dependencies]
5454
bevy = { version = "0.13", default-features = false, features = [

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ To learn more, [read the docs](https://docs.rs/bevy_mod_picking/latest/bevy_mod_
102102

103103
| bevy | bevy_mod_picking |
104104
| ---- | ---------------- |
105-
| 0.13 | 0.18 |
105+
| 0.13 | 0.18, 0.19 |
106106
| 0.12 | 0.17 |
107107
| 0.11 | 0.15, 0.16 |
108108
| 0.10 | 0.12, 0.13, 0.14 |

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.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -20,8 +20,8 @@ bevy_render = { version = "0.13", default-features = false }
2020

2121
bevy_egui = "0.25"
2222
# Local
23-
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.18" }
24-
bevy_picking_selection = { path = "../../crates/bevy_picking_selection", optional = true, version = "0.18" }
23+
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.19" }
24+
bevy_picking_selection = { path = "../../crates/bevy_picking_selection", optional = true, version = "0.19" }
2525

2626
[features]
2727
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.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -22,4 +22,4 @@ bevy_window = { version = "0.13", default-features = false }
2222

2323
bevy_rapier3d = "0.25"
2424
# Local
25-
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.18" }
25+
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.19" }

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.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -22,4 +22,4 @@ bevy_window = { version = "0.13", default-features = false }
2222

2323
bevy_mod_raycast = { version = "0.17.0" }
2424
# Local
25-
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.18" }
25+
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.19" }

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.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -22,4 +22,4 @@ bevy_sprite = { version = "0.13", default-features = false }
2222
bevy_transform = { version = "0.13", default-features = false }
2323
bevy_window = { version = "0.13", default-features = false }
2424
# Local
25-
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.18" }
25+
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.19" }

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.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"
@@ -24,4 +24,4 @@ bevy_utils = { version = "0.13", default-features = false }
2424
bevy_math = { version = "0.13", default-features = false }
2525

2626
# Local
27-
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.18" }
27+
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.19" }

backends/bevy_picking_xpbd/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_xpbd"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>, Affinator"]
66
license = "MIT OR Apache-2.0"
@@ -24,4 +24,4 @@ bevy_window = { version = "0.13", default-features = false }
2424

2525
bevy_xpbd_3d = "0.4"
2626
# Local
27-
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.18" }
27+
bevy_picking_core = { path = "../../crates/bevy_picking_core", version = "0.19" }

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.18.0"
3+
version = "0.19.0"
44
edition = "2021"
55
authors = ["Aevyrie <[email protected]>"]
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)