summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--src/audio/rodio.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index e31c5e0..e1197c5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1461,7 +1461,7 @@ dependencies = [
[[package]]
name = "somafm"
-version = "0.4.0"
+version = "0.5.0"
dependencies = [
"icy-metadata",
"inquire",
diff --git a/Cargo.toml b/Cargo.toml
index 9766ed7..e93e03a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "somafm"
description = "A Rust-based command line player for SomaFM radio"
-version = "0.4.0"
+version = "0.5.0"
authors = ["Yuval Adam <_@yuv.al>"]
edition = "2021"
license = "MIT"
diff --git a/src/audio/rodio.rs b/src/audio/rodio.rs
index 520628c..2557ed4 100644
--- a/src/audio/rodio.rs
+++ b/src/audio/rodio.rs
@@ -53,7 +53,7 @@ impl Rodio {
let md = metadata.unwrap();
if md.track_title().is_some() {
let tr = md.track_title().unwrap();
- println!("{tr}");
+ println!(" {tr}");
}
}
},