Skip to content

Commit

Permalink
Release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtcristo committed Nov 23, 2023
1 parent 9a7cb06 commit 85702c5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.12.0] - 2023-11-11

### Changed
- Updated `bevy` to 0.12.

## [0.11.0] - 2023-07-18

### Changed
Expand Down Expand Up @@ -118,7 +123,8 @@

Initial release.

[unreleased]: https://github.com/dtcristo/bevy_pixels/compare/v0.11.0...HEAD
[unreleased]: https://github.com/dtcristo/bevy_pixels/compare/v0.12.0...HEAD
[0.12.0]: https://github.com/dtcristo/bevy_pixels/releases/tag/v0.12.0
[0.11.0]: https://github.com/dtcristo/bevy_pixels/releases/tag/v0.11.0
[0.10.0]: https://github.com/dtcristo/bevy_pixels/releases/tag/v0.10.0
[0.9.0]: https://github.com/dtcristo/bevy_pixels/releases/tag/v0.9.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.11.0"
version = "0.12.0"
authors = ["David Cristofaro <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ Add `bevy` and `bevy_pixels` to `Cargo.toml`. Be sure to disable `bevy`'s `rende

```toml
[dependencies]
bevy = { version = "0.11", default_features = false }
bevy_pixels = "0.11"
bevy = { version = "0.12", default_features = false }
bevy_pixels = "0.12"
```

Add `PixelsPlugin` to your Bevy project.
Expand Down Expand Up @@ -68,6 +68,7 @@ fn draw(mut wrapper_query: Query<&mut PixelsWrapper>) {

| bevy_pixels | bevy | pixels |
| ----------- | ----- | ------ |
| 0.12 | 0.12 | 0.13 |
| 0.11 | 0.11 | 0.13 |
| 0.9-0.10 | 0.10 | 0.12 |
| 0.8 | 0.9 | 0.11 |
Expand Down

0 comments on commit 85702c5

Please sign in to comment.