Skip to content

Commit 8808080

Browse files
author
Rich Leland
committed
Bump version, update changelog
1 parent 2c10c0a commit 8808080

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

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

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+
815
## [1.3.3] - 2017-01-13
916
### Fixed
1017
- [#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/).
116123
- Metrics class for getting a list of campaigns and domains
117124
- Docs on readthedocs.org
118125

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
121129
[1.3.2]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.1...v1.3.2
122130
[1.3.1]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.0...v1.3.1
123131
[1.3.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.2.0...v1.3.0

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = '1.3'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '1.3.3'
63+
release = '1.3.4'
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.3.3',
9+
version='1.3.4',
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.3.3'
12+
__version__ = '1.3.4'
1313

1414

1515
class SparkPost(object):

0 commit comments

Comments
 (0)