File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5
5
## Unreleased
6
6
- [ Compare to latest release] [ unreleased ]
7
7
8
+ ## [ 1.3.4] - 2017-02-16
9
+ ### Added
10
+ - Examples for exception handling and using the base resource class
11
+
12
+ ### Fixed
13
+ - [ #137 ] ( https://github.com/SparkPost/python-sparkpost/pull/137 ) Added missing ` campaign ` support for Django backend
14
+
8
15
## [ 1.3.3] - 2017-01-13
9
16
### Fixed
10
17
- [ #135 ] ( https://github.com/SparkPost/python-sparkpost/pull/135 ) Issue where exceptions were not returning properly for some underlying API errors
@@ -116,8 +123,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
116
123
- Metrics class for getting a list of campaigns and domains
117
124
- Docs on readthedocs.org
118
125
119
- [ unreleased ] : https://github.com/sparkpost/python-sparkpost/compare/v1.3.3...HEAD
120
- [ 1.3.2 ] : https://github.com/sparkpost/python-sparkpost/compare/v1.3.2...v1.3.3
126
+ [ unreleased ] : https://github.com/sparkpost/python-sparkpost/compare/v1.3.4...HEAD
127
+ [ 1.3.4 ] : https://github.com/sparkpost/python-sparkpost/compare/v1.3.3...v1.3.4
128
+ [ 1.3.3 ] : https://github.com/sparkpost/python-sparkpost/compare/v1.3.2...v1.3.3
121
129
[ 1.3.2 ] : https://github.com/sparkpost/python-sparkpost/compare/v1.3.1...v1.3.2
122
130
[ 1.3.1 ] : https://github.com/sparkpost/python-sparkpost/compare/v1.3.0...v1.3.1
123
131
[ 1.3.0 ] : https://github.com/sparkpost/python-sparkpost/compare/v1.2.0...v1.3.0
Original file line number Diff line number Diff line change 60
60
# The short X.Y version.
61
61
version = '1.3'
62
62
# The full version, including alpha/beta/rc tags.
63
- release = '1.3.3 '
63
+ release = '1.3.4 '
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.3.3 ' ,
9
+ version = '1.3.4 ' ,
10
10
author = 'SparkPost' ,
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.3.3 '
12
+ __version__ = '1.3.4 '
13
13
14
14
15
15
class SparkPost (object ):
You can’t perform that action at this time.
0 commit comments