From 9e1c7aaac580dacb99c0e96d6b9a0477aa329317 Mon Sep 17 00:00:00 2001 From: Rich Leland Date: Thu, 10 Mar 2016 16:52:08 -0500 Subject: [PATCH] Bump version, update changelog --- CHANGELOG.md | 11 ++++++++++- docs/conf.py | 2 +- setup.py | 2 +- sparkpost/__init__.py | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6541724..3ece405 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased][unreleased] +## [1.0.4] - 2016-03-10 +### Added +- `SPARKPOST_OPTIONS` setting for Django for passing through additional transmission options like `track_opens`, `track_clicks`, and `transactional` +- Support for cc, bcc, reply to, and attachments for Django + +### Changed +- Refactored some of the bits in the Django email backend out into a `SparkPostMessage` class which prepares parameters for calls to the `Transmissions.send` method + ## [1.0.3] - 2016-03-03 ### Added - Tox for local testing @@ -53,7 +61,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Metrics class for getting a list of campaigns and domains - Docs on readthedocs.org -[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.3...HEAD +[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.4...HEAD +[1.0.4]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.3...v1.0.4 [1.0.3]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.2...v1.0.3 [1.0.2]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.0...v1.0.1 diff --git a/docs/conf.py b/docs/conf.py index 8df2a21..d9c0ef7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,7 +58,7 @@ # The short X.Y version. version = '1.0' # The full version, including alpha/beta/rc tags. -release = '1.0.3' +release = '1.0.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index b9f9853..1ccbb95 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='sparkpost', - version='1.0.3', + version='1.0.4', author='Message Systems', author_email='appteam@messagesystems.com', packages=find_packages(), diff --git a/sparkpost/__init__.py b/sparkpost/__init__.py index 4200785..3c2b66a 100644 --- a/sparkpost/__init__.py +++ b/sparkpost/__init__.py @@ -8,7 +8,7 @@ from .transmissions import Transmissions -__version__ = '1.0.3' +__version__ = '1.0.4' def get_api_key():