From 5622d6b4078625ae23606d52be5d2555be40229c Mon Sep 17 00:00:00 2001 From: James Gayfer <10660608+jgayfer@users.noreply.github.com> Date: Tue, 17 Sep 2024 21:48:00 -0700 Subject: [PATCH] Bump version --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- README.md | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 337944e..73af04f 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.4.0] - 2024-09-17 + ### Changed - Point lights colours are now added to ambient light, instead of multiplied by it (#24). diff --git a/Cargo.toml b/Cargo.toml index 482d0d6..e7ab3ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_light_2d" -version = "0.3.0" +version = "0.4.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 1e94a35..03b7e29 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.3" +bevy_light_2d = "0.4" ``` ```rust @@ -74,7 +74,7 @@ general application over depth of features. | bevy | bevy_light_2d | |------|---------------| -| 0.14 | 0.2..0.3 | +| 0.14 | 0.2..0.4 | | 0.13 | 0.1 | ## Acknowledgements