From cbb58270f4ed5695758403708e72d2cac47538c7 Mon Sep 17 00:00:00 2001 From: Rich Leland Date: Sun, 13 Nov 2016 10:59:56 -0600 Subject: [PATCH] Bump version, update changelog --- CHANGELOG.md | 15 +++++++++++++-- docs/conf.py | 2 +- setup.py | 2 +- sparkpost/__init__.py | 2 +- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c25ad5..807f98c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased - [Compare to latest release][unreleased] +## [1.3.1] - 2016-11-13 +### Added +- Instructions for use with Google Cloud + +### Fixed +- [#114](https://github.com/SparkPost/python-sparkpost/pull/114) Issue where emojis in the body of a message were being forced to ASCII +- [#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 +- [#119](https://github.com/SparkPost/python-sparkpost/pull/119) Added missing `sources` to suppression list key map + + ## [1.3.0] - 2016-10-01 ### Added - [#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/). - Metrics class for getting a list of campaigns and domains - Docs on readthedocs.org -[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.0...HEAD -[1.2.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.2.0...v1.3.0 +[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.1...HEAD +[1.3.1]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.0...v1.3.1 +[1.3.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.2.0...v1.3.0 [1.2.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.1.1...v1.2.0 [1.1.1]: https://github.com/sparkpost/python-sparkpost/compare/v1.1.0...v1.1.1 [1.1.0]: https://github.com/sparkpost/python-sparkpost/compare/v1.0.5...v1.1.0 diff --git a/docs/conf.py b/docs/conf.py index 9fc8840..6001a38 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,7 +60,7 @@ # The short X.Y version. version = '1.3' # The full version, including alpha/beta/rc tags. -release = '1.3.0' +release = '1.3.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index c5c6e56..f721a0d 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='sparkpost', - version='1.3.0', + version='1.3.1', author='SparkPost', author_email='developers@sparkpost.com', packages=find_packages(), diff --git a/sparkpost/__init__.py b/sparkpost/__init__.py index dcff0d6..a77453b 100644 --- a/sparkpost/__init__.py +++ b/sparkpost/__init__.py @@ -9,7 +9,7 @@ from .transmissions import Transmissions -__version__ = '1.3.0' +__version__ = '1.3.1' class SparkPost(object):