From a66fea840a92c0c138cae383e3af27a250f5079b Mon Sep 17 00:00:00 2001 From: MedzikUser Date: Thu, 22 Sep 2022 18:59:49 +0200 Subject: [PATCH] chore(release): v0.9.1 Delete debug info from cli in release build. --- CHANGELOG.md | 5 +++++ Cargo.lock | 4 ++-- Cargo.toml | 2 +- imgurs-cli/Cargo.toml | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae4e5e8..bccb76f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] + +## [0.9.1] - 2022-09-22 +- delete debug info from cli in release build + +## [0.9.0] - 2022-09-05 - moved cli to other crate - added get_album function diff --git a/Cargo.lock b/Cargo.lock index 97ea30a..b2c0767 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -851,7 +851,7 @@ dependencies = [ [[package]] name = "imgurs" -version = "0.9.0" +version = "0.9.1" dependencies = [ "base64", "notify-rust", @@ -865,7 +865,7 @@ dependencies = [ [[package]] name = "imgurs-cli" -version = "0.9.0" +version = "0.9.1" dependencies = [ "anyhow", "arboard", diff --git a/Cargo.toml b/Cargo.toml index e3d7239..fa0ea58 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [package] name = "imgurs" -version = "0.9.0" +version = "0.9.1" description = "API for Imgur" license = "BSD-3-Clause" authors = ["MedzikUser "] diff --git a/imgurs-cli/Cargo.toml b/imgurs-cli/Cargo.toml index 313d418..aa07ecd 100644 --- a/imgurs-cli/Cargo.toml +++ b/imgurs-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imgurs-cli" -version = "0.9.0" +version = "0.9.1" description = "CLI for Imgur" license = "BSD-3-Clause" authors = ["MedzikUser "] @@ -24,9 +24,9 @@ colored = "2.0" notify-rust = "4.5" better-panic = "0.3" dirs = "4.0" -log = "0.4" simple_logger = "2.3" toml = "0.5" +log = { version = "0.4", features = ["release_max_level_info"] } serde = { version = "1.0", features = ["derive"] } tokio = { version = "1.21", features = ["macros", "rt-multi-thread"] } imgurs = { path = "..", version = "0.9.0", features = ["full"] }