release v0.8.4

This commit is contained in:
Clément DOUIN 2023-07-18 17:48:19 +02:00
parent 5c360da80b
commit fff82498ba
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72
3 changed files with 11 additions and 4 deletions

View file

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [0.8.4] - 2023-07-18
### Fixed
- Fixed windows releases due to cargo deps typo.
## [0.8.3] - 2023-07-18 ## [0.8.3] - 2023-07-18
### Fixed ### Fixed
@ -582,7 +588,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Password from command [#22] - Password from command [#22]
- Set up README [#20] - 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.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.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 [0.8.1]: https://github.com/soywod/himalaya/compare/v0.8.0...v0.8.1

2
Cargo.lock generated
View file

@ -1005,7 +1005,7 @@ dependencies = [
[[package]] [[package]]
name = "himalaya" name = "himalaya"
version = "0.8.3" version = "0.8.4"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait", "async-trait",

View file

@ -1,7 +1,7 @@
[package] [package]
name = "himalaya" name = "himalaya"
description = "CLI to manage your emails." description = "CLI to manage your emails."
version = "0.8.3" version = "0.8.4"
authors = ["soywod <clement.douin@posteo.net>"] authors = ["soywod <clement.douin@posteo.net>"]
edition = "2021" edition = "2021"
license = "MIT" license = "MIT"
@ -67,5 +67,5 @@ rusqlite = { version = "0.29", features = [] }
[target.'cfg(not(target_env = "musl"))'.dependencies] [target.'cfg(not(target_env = "musl"))'.dependencies]
rusqlite = { version = "0.29", features = ["bundled"] } rusqlite = { version = "0.29", features = ["bundled"] }
[target.'cfg(not(target_env = "windows"))'.dependencies] [target.'cfg(not(windows))'.dependencies]
coredump = "=0.1.2" coredump = "=0.1.2"