From 08b8f82a66aa93b3fb3211c51dfb9ea7938c44fa Mon Sep 17 00:00:00 2001 From: atanunq Date: Sun, 13 Oct 2024 23:28:14 +0300 Subject: [PATCH] Release 0.8.1 --- CHANGELOG.md | 3 +++ Cargo.toml | 7 ++----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45bf336..d2e18e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.8.1 +- Revert removed `image` features + ## 0.8.0 - Remove unneeded features and update dependencies - Use Catmull-Rom for up/downscaling diff --git a/Cargo.toml b/Cargo.toml index 6b873d8..8ec95c6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "viuer" -version = "0.8.0" +version = "0.8.1" authors = ["Atanas Yankov "] edition = "2021" description = "Display images in the terminal" @@ -17,10 +17,7 @@ ansi_colours = "1" base64 = "0.22" console = { version = "0.15", default-features = false } crossterm = { version = "0.28", default-features = false } -image = { version = "0.25", default-features = false, features = [ - "rayon", - "png", -] } +image = "0.25" lazy_static = "1.5" tempfile = "3" termcolor = "1"