From b923ea782acacd0b1d431ad908362a4debc5c80b Mon Sep 17 00:00:00 2001 From: Paulo Phagula Date: Tue, 2 Jan 2018 19:42:05 +0200 Subject: [PATCH] v1.1.0 --- CHANGELOG.md | 7 +++++++ send_mail.py | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2372ae5..87df4b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ For a complete view of all the releases, visit the releases page on GitHub: [https://github.com/dareenzo/send_mail/releases](https://github.com/dareenzo/send_mail/releases) +## v1.1.0 - 2018-01-02 + +- Add support for multiple Reply to addresses +- Add Message-ID header to mails for usage by anti-spam software +- Send mails with content formatted as quoted-printable +- Improve documentation + ## v1.0.1 - 2017-01-22 - Only provide `send_mail` method as part of the public API. The rest of the diff --git a/send_mail.py b/send_mail.py index 5989630..dd9df2b 100644 --- a/send_mail.py +++ b/send_mail.py @@ -6,7 +6,7 @@ Email sending module for scripts. - :copyright: Copyright 2017 by Paulo Phagula. + :copyright: Copyright 2017-2018 by Paulo Phagula. :license: MIT, see LICENSE for details. """ from __future__ import unicode_literals, print_function diff --git a/setup.py b/setup.py index 06b730b..67860f2 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def file_get_contents(filename): setup( name='send_mail', - version='1.0.1', + version='1.1.0', description='Simple email sending module for use in ETL/reporting script.', long_description=LONG_DESCRIPTION, url='https://github.com/dareenzo/send_mail',