From 02ed314d79cbe67aa1337ebabf1d3493c95a5bb0 Mon Sep 17 00:00:00 2001 From: Paul McLanahan Date: Wed, 29 May 2019 11:52:50 -0400 Subject: [PATCH] Release 2.0.2 --- README.rst | 10 ++++++++++ djcelery_email/__about__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 14ccb1b..2d715d1 100644 --- a/README.rst +++ b/README.rst @@ -92,6 +92,16 @@ of their delivery. Changelog ========= +2.0.2 - 2019.05.29 +------------------ + +* Reduce memory usage by running email_to_dict on chunks. Thanks `Paul Brown`_. +* Simplify dict_to_email for readability and efficiency. Thanks `Paul Brown`_. +* Update test matrix for supported versions of Django, Celery and Python. Thanks `James`_. + +.. _Paul Brown: https://github.com/pawl +.. _James: https://github.com/jmsmkn + 2.0.1 - 2018.18.27 ------------------ * Fix bug preventing sending text/* encoded mime attachments. Thanks `Cesar Canassa`_. diff --git a/djcelery_email/__about__.py b/djcelery_email/__about__.py index eb7bf49..2d14ba4 100644 --- a/djcelery_email/__about__.py +++ b/djcelery_email/__about__.py @@ -7,7 +7,7 @@ __summary__ = 'An async Django email backend using celery' __uri__ = 'https://github.com/pmclanahan/django-celery-email' -__version__ = '2.0.1' +__version__ = '2.0.2' __author__ = 'Paul McLanahan' __email__ = 'paul@mclanahan.net'