diff --git a/CHANGELOG.md b/CHANGELOG.md index 66341eb..3bfd677 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,9 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -### Changed - -- Replace `log-level` arg by default `RUST_LOG` env var [#130] +## [0.3.0] - 2021-04-28 ### Fixed @@ -19,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Editon file format on Linux [#133] - Show email address when name not available [#131] +### Removed + +- `--log-level|-l` arg (replaced by default `RUST_LOG` env var from `env_logger`) [#130] + ## [0.2.7] - 2021-04-24 ### Added @@ -154,15 +156,16 @@ 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.7...HEAD -[0.2.7]: https://github.com/soywod/himalaya/compare/v0.2.7...v0.2.6 -[0.2.6]: https://github.com/soywod/himalaya/compare/v0.2.6...v0.2.5 -[0.2.5]: https://github.com/soywod/himalaya/compare/v0.2.5...v0.2.4 -[0.2.4]: https://github.com/soywod/himalaya/compare/v0.2.4...v0.2.3 -[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 +[unreleased]: https://github.com/soywod/himalaya/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/soywod/himalaya/compare/v0.2.7...v0.3.0 +[0.2.7]: https://github.com/soywod/himalaya/compare/v0.2.6...v0.2.7 +[0.2.6]: https://github.com/soywod/himalaya/compare/v0.2.5...v0.2.6 +[0.2.5]: https://github.com/soywod/himalaya/compare/v0.2.4...v0.2.5 +[0.2.4]: https://github.com/soywod/himalaya/compare/v0.2.3...v0.2.4 +[0.2.3]: https://github.com/soywod/himalaya/compare/v0.2.2...v0.2.3 +[0.2.2]: https://github.com/soywod/himalaya/compare/v0.2.1...v0.2.2 +[0.2.1]: https://github.com/soywod/himalaya/compare/v0.2.0...v0.2.1 +[0.2.0]: https://github.com/soywod/himalaya/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/soywod/himalaya/releases/tag/v0.1.0 [#1]: https://github.com/soywod/himalaya/issues/1 diff --git a/Cargo.lock b/Cargo.lock index 879accc..b477f2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -317,7 +317,7 @@ dependencies = [ [[package]] name = "himalaya" -version = "0.2.7" +version = "0.3.0" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 35aed54..eebc7ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "himalaya" description = "📫 CLI email client" -version = "0.2.7" +version = "0.3.0" authors = ["soywod "] edition = "2018"