File tree Expand file tree Collapse file tree 5 files changed +19
-6
lines changed Expand file tree Collapse file tree 5 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,11 @@ Patches and suggestions
11
11
12
12
- Barthelemy Dagenais `@bartdag <https://github.com/bartdag >`_
13
13
- Mohammad Hossain `@rajumsys <https://github.com/rajumsys >`_
14
+ - Jared Morse `@jarcoal <https://github.com/jarcoal >`_
15
+ - Marko Mrdjenovic `@friedcell <https://github.com/friedcell >`_
14
16
- Zdeněk Softič `@btx <https://github.com/btx >`_
15
17
- Simeon Visser `@svisser <https://github.com/svisser >`_
16
18
- `@gnarvaja <https://github.com/gnarvaja >`_
19
+ - `@pegler <https://github.com/pegler >`_
17
20
- `@puttu <https://github.com/puttu >`_
18
- - Marko Mrdjenovic `@friedcell <https://github.com/friedcell >`_
19
21
- ADD YOURSELF HERE (and link to your github page)
Original file line number Diff line number Diff line change @@ -4,6 +4,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
5
5
## [ Unreleased] [ unreleased ]
6
6
7
+ ## [ 1.1.0] - 2016-03-30
8
+ ### Added
9
+ - Better extensibility with support for Tornado
10
+ - Support for inline images
11
+ - Support for specifying IP pool
12
+
13
+ ### Fixed
14
+ - Issue where substitution data was being improperly passed to the templates preview endpoint
15
+ - Issue where Django backend was not properly base64 encoding attachments
16
+
7
17
## [ 1.0.5] - 2016-03-18
8
18
### Fixed
9
19
- Issue where global Django settings object was being modified, causing mixed emails
@@ -65,7 +75,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
65
75
- Metrics class for getting a list of campaigns and domains
66
76
- Docs on readthedocs.org
67
77
68
- [ unreleased ] : https://github.com/sparkpost/python-sparkpost/compare/v1.0.5...HEAD
78
+ [ unreleased ] : https://github.com/sparkpost/python-sparkpost/compare/v1.1.0...HEAD
79
+ [ 1.1.0 ] : https://github.com/sparkpost/python-sparkpost/compare/v1.0.5...v1.1.0
69
80
[ 1.0.5 ] : https://github.com/sparkpost/python-sparkpost/compare/v1.0.4...v1.0.5
70
81
[ 1.0.4 ] : https://github.com/sparkpost/python-sparkpost/compare/v1.0.3...v1.0.4
71
82
[ 1.0.3 ] : https://github.com/sparkpost/python-sparkpost/compare/v1.0.2...v1.0.3
Original file line number Diff line number Diff line change 58
58
# built documents.
59
59
#
60
60
# The short X.Y version.
61
- version = '1.0 '
61
+ version = '1.1 '
62
62
# The full version, including alpha/beta/rc tags.
63
- release = '1.0.5 '
63
+ release = '1.1.0 '
64
64
65
65
# The language for content autogenerated by Sphinx. Refer to documentation
66
66
# for a list of supported languages.
Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = 'sparkpost' ,
9
- version = '1.0.5 ' ,
9
+ version = '1.1.0 ' ,
10
10
author = 'Message Systems' ,
11
11
12
12
packages = find_packages (),
Original file line number Diff line number Diff line change 9
9
from .transmissions import Transmissions
10
10
11
11
12
- __version__ = '1.0.6.dev1 '
12
+ __version__ = '1.1.0 '
13
13
14
14
15
15
class SparkPost (object ):
You can’t perform that action at this time.
0 commit comments