From 402f9ef4aa24773ce0921657fe718236ec7e72a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Thu, 8 Apr 2021 14:29:04 +0200 Subject: [PATCH] release v0.2.3 --- CHANGELOG.md | 13 ++++++++----- Cargo.lock | 33 +-------------------------------- Cargo.toml | 4 ++-- 3 files changed, 11 insertions(+), 39 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a5469c..3d5d55b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,15 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -### Fixed - -- Unicode chars breaks the view [#71] -- Copy/move incomplete (missing parts) [#75] +## [0.2.3] - 2021-04-08 ### Added - Telescope support [#61] +### Fixed + +- Unicode chars breaks the view [#71] +- Copy/move incomplete (missing parts) [#75] + ## [0.2.2] - 2021-04-04 ### Added @@ -83,7 +85,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Password from command [#22] - Set up README [#20] -[unreleased]: https://github.com/soywod/himalaya/compare/v0.2.2...HEAD +[unreleased]: https://github.com/soywod/himalaya/compare/v0.2.3...HEAD +[0.2.3]: https://github.com/soywod/himalaya/compare/v0.2.3...v0.2.2 [0.2.2]: https://github.com/soywod/himalaya/compare/v0.2.2...v0.2.1 [0.2.1]: https://github.com/soywod/himalaya/compare/v0.2.1...v0.2.0 [0.2.0]: https://github.com/soywod/himalaya/compare/v0.2.0...v0.1.0 diff --git a/Cargo.lock b/Cargo.lock index de42dd1..7eb1302 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -24,32 +24,12 @@ dependencies = [ "memchr 2.3.4", ] -[[package]] -name = "ansi_term" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" -dependencies = [ - "winapi", -] - [[package]] name = "arrayvec" version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" -[[package]] -name = "atty" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -dependencies = [ - "hermit-abi", - "libc", - "winapi", -] - [[package]] name = "autocfg" version = "1.0.1" @@ -174,8 +154,6 @@ version = "2.33.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002" dependencies = [ - "ansi_term", - "atty", "bitflags", "strsim", "textwrap", @@ -293,18 +271,9 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" -[[package]] -name = "hermit-abi" -version = "0.1.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c" -dependencies = [ - "libc", -] - [[package]] name = "himalaya" -version = "0.2.2" +version = "0.2.3" dependencies = [ "clap", "error-chain", diff --git a/Cargo.toml b/Cargo.toml index 42e0c78..7d23800 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "himalaya" description = "📫 Minimalist CLI email client" -version = "0.2.2" +version = "0.2.3" authors = ["soywod "] edition = "2018" [dependencies] -clap = {version = "2.33.3", default-features = false, features=["suggestions", "color"]} +clap = {version = "2.33.3", default-features = false, features = ["suggestions"]} error-chain = "0.12.4" imap = "2.4.0" lettre = "0.10.0-beta.3"