Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dtcristo committed Mar 1, 2022
1 parent 7169523 commit 2a722ec
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,16 @@

## [Unreleased]

## [0.4.0] - 2022-03-01

### Added

- Added display server protocol features.

### Changed

- Updated `bevy` to 0.6.1.

## [0.3.0] - 2022-02-08

### Changed
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.3.0"
version = "0.4.0"
authors = ["David Cristofaro <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
15 changes: 8 additions & 7 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.6", default_features = false }
bevy_pixels = "0.3"
bevy = { version = "0.6.1", default_features = false }
bevy_pixels = "0.4"
```

Add `PixelsPlugin` to your Bevy project.
Expand Down Expand Up @@ -62,11 +62,12 @@ fn main_system(mut pixels_resource: ResMut<PixelsResource>) {

## Bevy and Pixels version mapping

| bevy_pixels | bevy | pixels |
| ----------- | ---- | ------ |
| 0.1 | 0.5 | 0.3 |
| 0.2 | 0.5 | 0.8 |
| 0.3 | 0.6 | 0.9 |
| bevy_pixels | bevy | pixels |
| ----------- | ----- | ------ |
| 0.1 | 0.5 | 0.3 |
| 0.2 | 0.5 | 0.8 |
| 0.3 | 0.6 | 0.9 |
| 0.4 | 0.6.1 | 0.9 |

## Examples

Expand Down

0 comments on commit 2a722ec

Please sign in to comment.