From fff82498baf9ad8168e86728dd7e546306fd00f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Tue, 18 Jul 2023 17:48:19 +0200 Subject: [PATCH] release v0.8.4 --- CHANGELOG.md | 9 ++++++++- Cargo.lock | 2 +- Cargo.toml | 4 ++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4e2e3f..f9d6687 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.4] - 2023-07-18 + +### Fixed + +- Fixed windows releases due to cargo deps typo. + ## [0.8.3] - 2023-07-18 ### Fixed @@ -582,7 +588,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.8.3...HEAD +[Unreleased]: https://github.com/soywod/himalaya/compare/v0.8.4...HEAD +[0.8.4]: https://github.com/soywod/himalaya/compare/v0.8.3...v0.8.4 [0.8.3]: https://github.com/soywod/himalaya/compare/v0.8.2...v0.8.3 [0.8.2]: https://github.com/soywod/himalaya/compare/v0.8.1...v0.8.2 [0.8.1]: https://github.com/soywod/himalaya/compare/v0.8.0...v0.8.1 diff --git a/Cargo.lock b/Cargo.lock index 4834779..b16fa21 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1005,7 +1005,7 @@ dependencies = [ [[package]] name = "himalaya" -version = "0.8.3" +version = "0.8.4" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 46bc51b..14ffd5d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "himalaya" description = "CLI to manage your emails." -version = "0.8.3" +version = "0.8.4" authors = ["soywod "] edition = "2021" license = "MIT" @@ -67,5 +67,5 @@ rusqlite = { version = "0.29", features = [] } [target.'cfg(not(target_env = "musl"))'.dependencies] rusqlite = { version = "0.29", features = ["bundled"] } -[target.'cfg(not(target_env = "windows"))'.dependencies] +[target.'cfg(not(windows))'.dependencies] coredump = "=0.1.2"