From 80abcb7436b5bb27db48905ed0d177d986c40c74 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Thu, 30 Dec 2021 22:18:03 +0900 Subject: [PATCH] Bump version to 0.2.7, minor fix --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- src/display.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bc12bfc..7fbe084 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1427,7 +1427,7 @@ dependencies = [ [[package]] name = "mpd_info_screen" -version = "0.2.6" +version = "0.2.7" dependencies = [ "ggez", "image", diff --git a/Cargo.toml b/Cargo.toml index 6835af6..ed7195f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mpd_info_screen" -version = "0.2.6" +version = "0.2.7" edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/README.md b/README.md index 59fc3b3..621c75f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ counter, and the filename currently being played # Usage - mpd_info_screen 0.2.6 + mpd_info_screen 0.2.7 USAGE: mpd_info_screen [FLAGS] [OPTIONS] [port] diff --git a/src/display.rs b/src/display.rs index dd0d496..ce4d691 100644 --- a/src/display.rs +++ b/src/display.rs @@ -10,7 +10,7 @@ use ggez::{timer, Context, GameError, GameResult}; use image::io::Reader as ImageReader; use std::io::Cursor; use std::sync::atomic::AtomicBool; -use std::sync::{atomic::Ordering, Arc, RwLock}; +use std::sync::{atomic::Ordering, Arc}; use std::thread; use std::time::{Duration, Instant};