Bump version to 0.7.0

master alpha-0.7.0
Manos Pitsidianakis 2021-09-03 16:10:37 +03:00
parent d1437ff275
commit 978939d8e3
Signed by: Manos Pitsidianakis
GPG Key ID: 73627C2F690DF710
5 changed files with 33 additions and 7 deletions

View File

@ -7,10 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [alpha-0.7.0] - 2021-09-03
### Added
- Add import command to import email from files into accounts
- Add add-attachment-file-picker command and `file_picker_command` setting to
Notable changes:
- add import command to import email from files into accounts
- add add-attachment-file-picker command and `file_picker_command` setting to
use external commands to choose files when composing new mail
- ask confirm for delete
- add export-mbox command
- add export-mail command
- add TLS support with nntp
- add JMAP watch with polling
- add reload-config command
- add import-mail command
- imap: implement gmail XOAUTH2 authentication method
- imap: implement OAUTH2 authentication
- compose: treat inline message/rfc822 as attachments
- add gpg support via libgpgme
### Fixed
- Loading notmuch library on macos
- Limit dbus dependency to target_os = "linux"
- IMAP, notmuch, mbox backends: various performance fixes
## [alpha-0.6.2] - 2020-09-24
@ -109,3 +131,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[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
[alpha-0.7.0]: https://github.com/meli/meli/releases/tag/alpha-0.7.0

4
Cargo.lock generated
View File

@ -1096,7 +1096,7 @@ checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
[[package]]
name = "meli"
version = "0.6.2"
version = "0.7.0"
dependencies = [
"async-task 3.0.0",
"bincode",
@ -1133,7 +1133,7 @@ dependencies = [
[[package]]
name = "melib"
version = "0.6.2"
version = "0.7.0"
dependencies = [
"async-stream",
"base64 0.12.3",

View File

@ -1,6 +1,6 @@
[package]
name = "meli"
version = "0.6.2"
version = "0.7.0"
authors = ["Manos Pitsidianakis <el13635@mail.ntua.gr>"]
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.2" }
melib = { path = "melib", version = "0.7.0" }
serde = "1.0.71"
serde_derive = "1.0.71"

3
debian/changelog vendored
View File

@ -1,3 +1,6 @@
meli (0.7.0-1) buster; urgency=low
-- Manos Pitsidianakis <epilys@nessuent.xyz> Fri, 03 Sep 2021 18:14:00 +0200
meli (0.6.2-1) buster; urgency=low
Added

View File

@ -1,6 +1,6 @@
[package]
name = "melib"
version = "0.6.2"
version = "0.7.0"
authors = ["Manos Pitsidianakis <epilys@nessuent.xyz>"]
workspace = ".."
edition = "2018"