Skip to content

Commit

Permalink
v0.15.0 release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
aevyrie committed Oct 30, 2023
1 parent 80fd8d9 commit 401bcf9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
intersections.
- Changed: removed unused `Reflect` derive from `RaycastSettings`. This struct is neither a resource
nor a component.
- Changed: unified the look of debug gizmos across the immediate and deferred APIs.

# 0.14.1

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_mod_raycast"
version = "0.15.0-dev"
version = "0.15.0"
authors = ["Aevyrie <aevyrie@gmail.com>"]
edition = "2021"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A small [Bevy](https://github.com/bevyengine/bevy) plugin for mesh raycasting.

## Getting Started

Using the [`Raycast`](https://docs.rs/bevy_mod_raycast/latest/bevy_mod_raycast/system_param/struct.Raycast.html) system param, you don't even need to add a plugin, raycast immediately with the ECS:
Using the [`Raycast`](https://docs.rs/bevy_mod_raycast/latest/bevy_mod_raycast/system_param/struct.Raycast.html) system param, you don't even need to add a plugin, you can directly raycast into the ECS:

```rs
use bevy_mod_raycast::prelude::*;
Expand All @@ -34,7 +34,7 @@ I intend to track the `main` branch of Bevy. PRs supporting this are welcome!

| bevy | bevy_mod_raycast |
| ---- | ---------------- |
| 0.11 | 0.9 - 0.14 |
| 0.11 | 0.9 - 0.15 |
| 0.10 | 0.8 |
| 0.9 | 0.7 |
| 0.8 | 0.6 |
Expand Down

0 comments on commit 401bcf9

Please sign in to comment.