diff --git a/CHANGELOG.md b/CHANGELOG.md index dfcb8d4..f130828 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2024-08-05 + ### Added - Added `LightOccluder2d` component and `LightOccluder2dBundle` (#20). diff --git a/Cargo.toml b/Cargo.toml index 5cc49d7..482d0d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_light_2d" -version = "0.2.2" +version = "0.3.0" edition = "2021" categories = ["game-engines", "graphics", "rendering"] description = "General purpose 2d lighting for the Bevy game engine." diff --git a/README.md b/README.md index 495b7f5..1e94a35 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ In the [`basic`](https://github.com/jgayfer/bevy_light_2d/blob/main/examples/bas # Cargo.toml [dependencies] bevy = "0.14" -bevy_light_2d = "0.2" +bevy_light_2d = "0.3" ``` ```rust @@ -74,7 +74,7 @@ general application over depth of features. | bevy | bevy_light_2d | |------|---------------| -| 0.14 | 0.2 | +| 0.14 | 0.2..0.3 | | 0.13 | 0.1 | ## Acknowledgements