mirror of
https://github.com/pimalaya/himalaya.git
synced 2026-06-17 05:07:55 +08:00
release v0.2.3
This commit is contained in:
+8
-5
@@ -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
|
||||
|
||||
Generated
+1
-32
@@ -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",
|
||||
|
||||
+2
-2
@@ -1,12 +1,12 @@
|
||||
[package]
|
||||
name = "himalaya"
|
||||
description = "📫 Minimalist CLI email client"
|
||||
version = "0.2.2"
|
||||
version = "0.2.3"
|
||||
authors = ["soywod <clement.douin@posteo.net>"]
|
||||
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"
|
||||
|
||||
Reference in New Issue
Block a user