From 4db99a3e739d4fb71dc1876c6bbf610c095db248 Mon Sep 17 00:00:00 2001 From: Jamy Golden Date: Sat, 17 Feb 2024 10:20:57 +0100 Subject: [PATCH] Fix missing line break between `tinty info` items - Version bump to 0.8.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- license.html | 2 +- src/operations/info.rs | 2 ++ 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9b33021..9f8c2ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -425,7 +425,7 @@ dependencies = [ [[package]] name = "tinty" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 1791309..785e489 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tinty" description = "Change the theme of your terminal, text editor and anything else with one command!" -version = "0.8.0" +version = "0.8.1" edition = "2021" license = "MIT" readme = "README.md" diff --git a/license.html b/license.html index a74786f..b1075d5 100644 --- a/license.html +++ b/license.html @@ -2225,7 +2225,7 @@

Used by:

MIT License

Used by:

MIT License
 
diff --git a/src/operations/info.rs b/src/operations/info.rs
index c94ae1a..67eb23a 100644
--- a/src/operations/info.rs
+++ b/src/operations/info.rs
@@ -181,6 +181,8 @@ fn print_scheme(scheme_path: &Path) -> Result<()> {
         println!();
     }
 
+    println!();
+
     Ok(())
 }