Skip to content

Commit 1ec1c40

Browse files
author
Rich Leland
committed
Bump version, update changelog
1 parent f3b27cc commit 1ec1c40

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

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

8+
## [1.3.3] - 2017-01-13
9+
### Fixed
10+
- [#135](https://github.com/SparkPost/python-sparkpost/pull/135) Issue where exceptions were not returning properly for some underlying API errors
11+
812
## [1.3.2] - 2016-11-14
913
### Fixed
1014
- [#129](https://github.com/SparkPost/python-sparkpost/pull/129) Reverted change for emojis in the body of a message, needs further investigation
1115
- [#129](https://github.com/SparkPost/python-sparkpost/pull/129) `substitution_data`, `metadata`, and `tags` are now supplied properly for cc/bcc recipients
1216

13-
1417
## [1.3.1] - 2016-11-13
1518
### Added
1619
- Instructions for use with Google Cloud
@@ -20,7 +23,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2023
- [#118](https://github.com/SparkPost/python-sparkpost/pull/118) Fixed improper setting of header_to value when using cc and primary recipient has substitution data
2124
- [#119](https://github.com/SparkPost/python-sparkpost/pull/119) Added missing `sources` to suppression list key map
2225

23-
2426
## [1.3.0] - 2016-10-01
2527
### Added
2628
- [#121](https://github.com/SparkPost/python-sparkpost/pull/121) Added extended error code to `SparkPostAPIException` class
@@ -114,7 +116,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
114116
- Metrics class for getting a list of campaigns and domains
115117
- Docs on readthedocs.org
116118

117-
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.2...HEAD
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
118121
[1.3.2]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.1...v1.3.2
119122
[1.3.1]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.0...v1.3.1
120123
[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.2'
63+
release = '1.3.3'
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.2',
9+
version='1.3.3',
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.2'
12+
__version__ = '1.3.3'
1313

1414

1515
class SparkPost(object):

0 commit comments

Comments
 (0)