diff --git a/CHANGELOG.md b/CHANGELOG.md index 4899045a..2f376992 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.0.14 + +- Save messages to the server with ImapClient.appendMessage(). +- Store message flags using the ImapClient.store() method or use one of the mark-methods like markFlagged() or markSeen(). +- Copy message(s) using ImapClient.copy(). +- Copy, fetch, store or search message with UIDs using ImapClient.uidCopy(), uidStore(), etc. +- Remove messages marked with the \Deleted flag using ImapClient.expunge() +- Authenticate via OAUTH 2.0 using ImapClient.authenticateWithOAuth2() (AUTH=XOAUTH2) or authenticateWithOAuthBearer() (AUTH=OAUTHBEARER). +- You can now switch to TLS using ImapClient.startTls(). +- Query the capabilities using the ImapClient.capability() call. +- Let the server do some housekeeping using the ImapClient.check() method. + ## 0.0.13 - Forward complex messages with MessageBuilder.prepareForwardMessage(), too (issue #24) diff --git a/pubspec.yaml b/pubspec.yaml index 8f676848..830ba064 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: enough_mail description: IMAP and SMTP clients in pure Dart. Strives to be compliant with IMAP4 rev1, IMAP IDLE, IMAP METADATA Extension and SMTP. -version: 0.0.13 +version: 0.0.14 homepage: https://github.com/Enough-Software/enough_mail environment: