Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
r3tr0ananas committed Jan 13, 2025
1 parent 11602a4 commit 7de6a7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
license = "GPL-3.0"
Expand Down
6 changes: 1 addition & 5 deletions src/upscale.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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())))
}
}

Expand Down

0 comments on commit 7de6a7c

Please sign in to comment.