diff --git a/CHANGELOG.md b/CHANGELOG.md index d4b2661..386740a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,18 @@ ## [Unreleased] +## [0.5.0] - 2022-06-28 + ### Changed - Updated `bevy` to 0.7. - Simplify minimal example. - Initialize `PixelsResource` in `StartupStage::PreStartup` instead of `StartupStage::Startup` +- Relicense under dual MIT or Apache-2.0 license. + +### Fixed + +- Fixed window resize on high DPI displays. ## [0.4.0] - 2022-03-01 @@ -42,7 +49,8 @@ Initial release. -[unreleased]: https://github.com/dtcristo/bevy_pixels/compare/v0.4.0...HEAD +[unreleased]: https://github.com/dtcristo/bevy_pixels/compare/v0.5.0...HEAD +[0.5.0]: https://github.com/dtcristo/bevy_pixels/releases/tag/v0.5.0 [0.4.0]: https://github.com/dtcristo/bevy_pixels/releases/tag/v0.4.0 [0.3.0]: https://github.com/dtcristo/bevy_pixels/releases/tag/v0.3.0 [0.2.0]: https://github.com/dtcristo/bevy_pixels/releases/tag/v0.2.0 diff --git a/Cargo.toml b/Cargo.toml index 20ef5cb..8518c24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bevy_pixels" description = "Bevy plugin that uses Pixels (a tiny pixel buffer) for rendering" -version = "0.4.0" +version = "0.5.0" authors = ["David Cristofaro "] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index b5634e3..7d6f32d 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ Add `bevy` and `bevy_pixels` to `Cargo.toml`. Be sure to disable `bevy`'s `rende ```toml [dependencies] -bevy = { version = "0.6", default_features = false } -bevy_pixels = "0.4" +bevy = { version = "0.7", default_features = false } +bevy_pixels = "0.5" ``` Add `PixelsPlugin` to your Bevy project. @@ -67,8 +67,7 @@ fn main_system(mut pixels_resource: ResMut) { | 0.1 | 0.5 | 0.3 | | 0.2 | 0.5 | 0.8 | | 0.3-0.4 | 0.6 | 0.9 | - - +| 0.5 | 0.7 | 0.9 | ## Examples