Skip to content

Commit

Permalink
release v0.0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Virkus committed May 3, 2020
1 parent d6e63b2 commit 6fc9b01
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit 6fc9b01

Please sign in to comment.