From 6ccb4e9544ef8ea2cceee7f849655a07527d0360 Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Thu, 24 Sep 2020 12:19:45 +0300 Subject: [PATCH] melib: bump version to 0.6.2 --- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- melib/Cargo.toml | 2 +- 4 files changed, 27 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee26cd9f..32a5771a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [alpha-0.6.2] - 2020-09-24 + +### Added +- Add customizable mailbox tree in sidebar +- Make `dbus` dependency opt-out (feature is `dbus-notifications`) +- Implemented JMAP async, search, tagging, syncing +- Preserve account order from configuration file +- Implemented IMAP `CONDSTORE` support for IMAP cache +- Add `timeout` setting for IMAP +- Implement TCP keepalive for IMAP +- Rewrote email address parsers. +- Implement `copy_messages` for maildir +- Implement selection with motions + +### Fixed +- Fixed various problems with IMAP cache +- Fixed various problems with IMAP message counts +- Fixed various problems with IMAP connection hanging +- Fixed IMAP not reconnecting on dropped IDLE connections +- Fixed various problems with notmuch backend + ## [alpha-0.6.1] - 2020-08-02 ### Added @@ -82,3 +103,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [alpha-0.5.1]: https://github.com/meli/meli/releases/tag/alpha-0.5.1 [alpha-0.6.0]: https://github.com/meli/meli/releases/tag/alpha-0.6.0 [alpha-0.6.1]: https://github.com/meli/meli/releases/tag/alpha-0.6.1 +[alpha-0.6.2]: https://github.com/meli/meli/releases/tag/alpha-0.6.2 diff --git a/Cargo.lock b/Cargo.lock index f788fd5e..9be4948e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1055,7 +1055,7 @@ checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" [[package]] name = "meli" -version = "0.6.1" +version = "0.6.2" dependencies = [ "async-task", "bincode", @@ -1094,7 +1094,7 @@ dependencies = [ [[package]] name = "melib" -version = "0.6.1" +version = "0.6.2" dependencies = [ "async-stream", "base64", diff --git a/Cargo.toml b/Cargo.toml index 2b4e4e39..ff028c0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "meli" -version = "0.6.1" +version = "0.6.2" authors = ["Manos Pitsidianakis "] edition = "2018" @@ -31,7 +31,7 @@ crossbeam = "0.7.2" signal-hook = "0.1.12" signal-hook-registry = "1.2.0" nix = "0.17.0" -melib = { path = "melib", version = "0.6.1" } +melib = { path = "melib", version = "0.6.2" } serde = "1.0.71" serde_derive = "1.0.71" diff --git a/melib/Cargo.toml b/melib/Cargo.toml index 0da14196..72efcea4 100644 --- a/melib/Cargo.toml +++ b/melib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "melib" -version = "0.6.1" +version = "0.6.2" authors = ["Manos Pitsidianakis "] workspace = ".." edition = "2018"