Skip to content

Commit

Permalink
Prepare 0.12.0 (#349)
Browse files Browse the repository at this point in the history
* Prepare 0.12.0

* Cleanup use statements
  • Loading branch information
parasyte committed Mar 22, 2023
1 parent e99c5ea commit 96eef39
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.11.0"
version = "0.12.0"
authors = ["Jay Oster <jay@kodewerx.org>"]
edition = "2021"
rust-version = "1.64.0"
Expand Down
1 change: 1 addition & 0 deletions MSRV.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
| `pixels` version | `rustc` version |
|------------------|-----------------|
| (unreleased) | `1.65.0` |
| `0.12.0` | `1.65.0` |
| `0.11.0` | `1.65.0` |
| `0.10.0` | `1.61.0` |
| `0.9.0` | `1.57.0` |
Expand Down
4 changes: 1 addition & 3 deletions examples/invaders/simple-invaders/src/loader.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
use crate::sprites::{CachedSprite, Frame};
use alloc::collections::BTreeMap;
use alloc::rc::Rc;

use alloc::vec::Vec;

use crate::sprites::{CachedSprite, Frame};

/// A list of assets loaded into memory.
#[derive(Debug)]
pub(crate) struct Assets {
Expand Down

0 comments on commit 96eef39

Please sign in to comment.