Skip to content

Commit

Permalink
Release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtcristo committed May 1, 2023
1 parent 49c5d10 commit 726c912
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Changelog

## [Unreleased]
## [0.10.0] - 2023-05-01

### Added
- Added support for defining a custom render system by disabling default `render` cargo feature. Use `default_features = "false"` in Cargo.toml.
- Added support for defining a custom render system by disabling default `render` cargo feature. Use
`default_features = "false"` in Cargo.toml.

### Changed
- Refactord crate into modules.
- Internally refactored crate into modules.
- Diagnostic `PixelsPlugin::RENDER_TIME` has been moved to `bevy_pixels::diagnostic::RENDER_TIME`
module.

Expand Down Expand Up @@ -109,7 +110,8 @@

Initial release.

[unreleased]: https://github.com/dtcristo/bevy_pixels/compare/v0.9.0...HEAD
[unreleased]: https://github.com/dtcristo/bevy_pixels/compare/v0.10.0...HEAD
[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
[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
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.9.0"
version = "0.10.0"
authors = ["David Cristofaro <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions 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.10", default_features = false }
bevy_pixels = "0.9"
bevy_pixels = "0.10"
```

Add `PixelsPlugin` to your Bevy project.
Expand Down Expand Up @@ -76,7 +76,7 @@ fn draw(mut wrapper_query: Query<&mut PixelsWrapper>) {
| 0.6 | 0.8 | 0.10 |
| 0.7 | 0.9 | 0.10 |
| 0.8 | 0.9 | 0.11 |
| 0.9 | 0.10 | 0.12 |
| 0.9-0.10 | 0.10 | 0.12 |

## Examples

Expand Down

0 comments on commit 726c912

Please sign in to comment.