Skip to content

Commit cbb5827

Browse files
author
Rich Leland
committed
Bump version, update changelog
1 parent 99873b5 commit cbb5827

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGELOG.md

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

8+
## [1.3.1] - 2016-11-13
9+
### Added
10+
- Instructions for use with Google Cloud
11+
12+
### Fixed
13+
- [#114](https://github.com/SparkPost/python-sparkpost/pull/114) Issue where emojis in the body of a message were being forced to ASCII
14+
- [#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
15+
- [#119](https://github.com/SparkPost/python-sparkpost/pull/119) Added missing `sources` to suppression list key map
16+
17+
818
## [1.3.0] - 2016-10-01
919
### Added
1020
- [#121](https://github.com/SparkPost/python-sparkpost/pull/121) Added extended error code to `SparkPostAPIException` class
@@ -98,8 +108,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
98108
- Metrics class for getting a list of campaigns and domains
99109
- Docs on readthedocs.org
100110

101-
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.0...HEAD
102-
[1.2.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.2.0...v1.3.0
111+
[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.1...HEAD
112+
[1.3.1]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.0...v1.3.1
113+
[1.3.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.2.0...v1.3.0
103114
[1.2.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.1.1...v1.2.0
104115
[1.1.1]: https://github.com/sparkpost/python-sparkpost/compare/v1.1.0...v1.1.1
105116
[1.1.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.5...v1.1.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.0'
63+
release = '1.3.1'
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.0',
9+
version='1.3.1',
1010
author='SparkPost',
1111
author_email='developers@sparkpost.com',
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.0'
12+
__version__ = '1.3.1'
1313

1414

1515
class SparkPost(object):

0 commit comments

Comments
 (0)