Skip to content

Commit 608b0de

Browse files
author
Rich Leland
committed
Bump version, update changelog
1 parent f9d1b8b commit 608b0de

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55
## Unreleased
66
- [Compare to latest release][unreleased]
77

8+
## [1.2.0] - 2016-04-19
9+
### Added
10+
- [#109](https://github.com/SparkPost/python-sparkpost/pull/109) Support for specifying `template`, `substitution_data` when using the Django email backend
11+
- [#100](https://github.com/SparkPost/python-sparkpost/pull/100) Support for the `content_subtype` attribute when using the `EmailMessage` class in Django
12+
813
## [1.1.1] - 2016-04-08
914
### Fixed
1015
- [#99](https://github.com/SparkPost/python-sparkpost/pull/99) Issue where inline images were always passed to the API, which in turn required HTML content
@@ -81,7 +86,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
8186
- Metrics class for getting a list of campaigns and domains
8287
- Docs on readthedocs.org
8388

84-
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.1.1...HEAD
89+
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.2.0...HEAD
90+
[1.2.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.1.1...v1.2.0
8591
[1.1.1]: https://github.com/sparkpost/python-sparkpost/compare/v1.1.0...v1.1.1
8692
[1.1.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.5...v1.1.0
8793
[1.0.5]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.4...v1.0.5

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = '1.1'
61+
version = '1.2'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '1.1.1'
63+
release = '1.2.0'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# 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.1.1',
9+
version='1.2.0',
1010
author='SparkPost',
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
@@ -9,7 +9,7 @@
99
from .transmissions import Transmissions
1010

1111

12-
__version__ = '1.1.1'
12+
__version__ = '1.2.0'
1313

1414

1515
class SparkPost(object):

0 commit comments

Comments
 (0)