Skip to content

Commit

Permalink
Prepare 0.7.0 (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
parasyte committed Oct 8, 2021
1 parent 800dd93 commit 0295a54
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
1 change: 1 addition & 0 deletions MSRV.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down
2 changes: 0 additions & 2 deletions src/renderers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ pub struct ScalingRenderer {
width: f32,
height: f32,
clip_rect: (u32, u32, u32, u32),
render_texture_format: wgpu::TextureFormat,
}

impl ScalingRenderer {
Expand Down Expand Up @@ -181,7 +180,6 @@ impl ScalingRenderer {
width: texture_size.width as f32,
height: texture_size.height as f32,
clip_rect,
render_texture_format,
}
}

Expand Down

0 comments on commit 0295a54

Please sign in to comment.