Skip to content

Commit

Permalink
Release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtcristo committed Dec 20, 2022
1 parent e87d2cc commit 61c4195
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [Unreleased]
## [0.8.0] - 2022-12-20

### Changed

Expand Down Expand Up @@ -72,7 +72,8 @@

Initial release.

[unreleased]: https://github.com/dtcristo/bevy_pixels/compare/v0.7.0...HEAD
[unreleased]: https://github.com/dtcristo/bevy_pixels/compare/v0.8.0...HEAD
[0.8.0]: https://github.com/dtcristo/bevy_pixels/releases/tag/v0.8.0
[0.7.0]: https://github.com/dtcristo/bevy_pixels/releases/tag/v0.7.0
[0.6.0]: https://github.com/dtcristo/bevy_pixels/releases/tag/v0.6.0
[0.5.0]: https://github.com/dtcristo/bevy_pixels/releases/tag/v0.5.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bevy_pixels"
description = "Bevy plugin that uses Pixels (a tiny pixel buffer) for rendering"
version = "0.7.0"
version = "0.8.0"
authors = ["David Cristofaro <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Add `bevy` and `bevy_pixels` to `Cargo.toml`. Be sure to disable `bevy`'s `rende
```toml
[dependencies]
bevy = { version = "0.9", default_features = false }
bevy_pixels = "0.7"
bevy_pixels = "0.8"
```

Add `PixelsPlugin` to your Bevy project.
Expand Down Expand Up @@ -70,6 +70,7 @@ fn main_system(mut pixels_resource: ResMut<PixelsResource>) {
| 0.5 | 0.7 | 0.9 |
| 0.6 | 0.8 | 0.10 |
| 0.7 | 0.9 | 0.10 |
| 0.8 | 0.9 | 0.11 |

## Examples

Expand Down

0 comments on commit 61c4195

Please sign in to comment.