From 56e9e512f7195cde6b74d44d07c2ba507ee94665 Mon Sep 17 00:00:00 2001 From: atanunq Date: Tue, 22 Oct 2024 23:06:29 +0300 Subject: [PATCH] Release 0.9.1 --- CHANGELOG.md | 3 +++ Cargo.toml | 7 ++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fd8f96..1f3cbdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.9.1 +- Add docs.rs metadata + ## 0.9.0 - Remove `image` default features - Put `print_from_file` behind the new `print-file` feature flag diff --git a/Cargo.toml b/Cargo.toml index a1f1cc5..fcfe532 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "viuer" -version = "0.9.0" +version = "0.9.1" authors = ["Atanas Yankov "] edition = "2021" description = "Display images in the terminal" @@ -30,3 +30,8 @@ crossterm = { version = "0.28", default-features = false, features = ["windows"] default = [] sixel = ["sixel-rs"] print-file = ["image/default-formats"] # Hide file printing behind a flag because it adds heavy dependencies. + + +[package.metadata.docs.rs] +# Show all methods in the documentation, even the non-default ones. +all-features = true