Prepare 0.7.0 (#210)

This commit is contained in:
Jay Oster 2021-10-08 12:11:43 -07:00 committed by GitHub
parent 800dd931b7
commit 0295a54e30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 3 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "pixels"
description = "A tiny library providing a GPU-powered pixel frame buffer."
version = "0.6.0"
version = "0.7.0"
authors = ["Jay Oster <jay@kodewerx.org>"]
edition = "2018"
repository = "https://github.com/parasyte/pixels"

View file

@ -2,6 +2,7 @@
| `pixels` version | `rustc` version |
|------------------|-----------------|
| `0.7.0` | `1.52.0` |
| `0.6.0` | `1.52.0` |
| `0.5.0` | `1.52.0` |
| `0.4.0` | `1.52.0` |

View file

@ -12,7 +12,6 @@ pub struct ScalingRenderer {
width: f32,
height: f32,
clip_rect: (u32, u32, u32, u32),
render_texture_format: wgpu::TextureFormat,
}
impl ScalingRenderer {
@ -181,7 +180,6 @@ impl ScalingRenderer {
width: texture_size.width as f32,
height: texture_size.height as f32,
clip_rect,
render_texture_format,
}
}