From 7de6a7cf7a6c3b4f120ace350bce47fcd12e82ec Mon Sep 17 00:00:00 2001 From: Ananas Date: Mon, 13 Jan 2025 06:47:11 +0100 Subject: [PATCH] chore: bump version --- Cargo.toml | 2 +- src/upscale.rs | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 897d217..d426adb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "aeternum" edition = "2021" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" description = "A simple and minimal upscaler built in rust" authors = ["Ananas "] license = "GPL-3.0" diff --git a/src/upscale.rs b/src/upscale.rs index 2a78c98..25e4695 100644 --- a/src/upscale.rs +++ b/src/upscale.rs @@ -113,11 +113,7 @@ impl Upscale { upscaling_arc: Arc::new(false.into()) }) }, - Err(err) => { - let err_mesage = err.to_string(); - - Err(Error::UpscaylNotInPath(Some(err_mesage))) - } + Err(err) => Err(Error::UpscaylNotInPath(Some(err.to_string()))) } }