Skip to content

Commit 96a8492

Browse files
committed
Merge pull request #85 from SparkPost/bump
Bump version, update changelog
2 parents 72f117b + 9e1c7aa commit 96a8492

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased][unreleased]
66

7+
## [1.0.4] - 2016-03-10
8+
### Added
9+
- `SPARKPOST_OPTIONS` setting for Django for passing through additional transmission options like `track_opens`, `track_clicks`, and `transactional`
10+
- Support for cc, bcc, reply to, and attachments for Django
11+
12+
### Changed
13+
- 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
14+
715
## [1.0.3] - 2016-03-03
816
### Added
917
- Tox for local testing
@@ -53,7 +61,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5361
- Metrics class for getting a list of campaigns and domains
5462
- Docs on readthedocs.org
5563

56-
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.3...HEAD
64+
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.4...HEAD
65+
[1.0.4]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.3...v1.0.4
5766
[1.0.3]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.2...v1.0.3
5867
[1.0.2]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.1...v1.0.2
5968
[1.0.1]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.0...v1.0.1

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# The short X.Y version.
5959
version = '1.0'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '1.0.3'
61+
release = '1.0.4'
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='sparkpost',
9-
version='1.0.3',
9+
version='1.0.4',
1010
author='Message Systems',
1111
author_email='[email protected]',
1212
packages=find_packages(),

sparkpost/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .transmissions import Transmissions
99

1010

11-
__version__ = '1.0.3'
11+
__version__ = '1.0.4'
1212

1313

1414
def get_api_key():

0 commit comments

Comments
 (0)