From 13eeb74234c65e2a33ae331f6c076e2c1072efc7 Mon Sep 17 00:00:00 2001 From: Adam Coddington Date: Mon, 1 Sep 2014 13:35:37 -0700 Subject: [PATCH] Releasing version 4.0. --- CHANGELOG.rst | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..64df677 --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,51 @@ +Changelog +========= + +4.0 +--- + +* Adds ``html`` property returning the HTML contents of + ``django_mailbox.models.Message`` instances. + Thanks `@ariel17 `_! +* Adds translation support. + Thanks `@ariel17 `_! +* **Drops support for Python 3.2**. The fact that only versions of + Python newer than 3.2 allow unicode literals has convinced me + that supporting Python 3.2 is probably more trouble than it's worth. + Please let me know if you were using Python 3.2, and I've left you + out in the cold; I'm willing to fix Python 3.2 support if it is + actively used. + +3.4 +--- + +* Adds ``gmail`` transport allowing one to use Google + OAuth credentials for gathering messages from gmail. + Thanks `@alexlovelltroy `_! + +3.3 +--- + +* Adds functionality to ``imap`` transport allowing one to + archive processed e-mails. + Thanks `@yellowcap `_! + +3.2 +--- + +* Fixes `#13 `_; + Python 3 support had been broken for some time. Thanks for catching that, + `@greendee `_! + +3.1 +--- + +* Fixes a wide variety of unicode-related errors. + +3.0 +--- + +* Restructures message storage such that non-text message attachments + are stored as files, rather than in the database in their original + (probably base64-encoded) blobs. +* So many new tests. diff --git a/setup.py b/setup.py index 3cbfc2e..7b640dd 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ gmail_oauth2_require = [ setup( name='django-mailbox', - version='3.4.2', + version='4.0', url='http://github.com/coddingtonbear/django-mailbox/', description=( 'Import mail from POP3, IMAP, local mailboxes or directly from '