diff --git a/AUTHORS.rst b/AUTHORS.rst index 2ea86f5..697d4b4 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -9,15 +9,16 @@ Core contributors Patches and suggestions ----------------------- +- Artur Felipe Sousa `@arturfelipe `_ - Barthelemy Dagenais `@bartdag `_ -- Mohammad Hossain `@rajumsys `_ +- Dmitry Tyukin `@deems `_ - Jared Morse `@jarcoal `_ - Marko Mrdjenovic `@friedcell `_ -- Zdeněk Softič `@btx `_ +- Mohammad Hossain `@rajumsys `_ - Simeon Visser `@svisser `_ +- Zdeněk Softič `@btx `_ - `@amatissart `_ - `@gnarvaja `_ - `@pegler `_ - `@puttu `_ -- Dmitry Tyukin `@deems `_ - ADD YOURSELF HERE (and link to your github page) diff --git a/CHANGELOG.md b/CHANGELOG.md index 807f98c..9c57adf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased - [Compare to latest release][unreleased] +## [1.3.2] - 2016-11-14 +### Fixed +- [#129](https://github.com/SparkPost/python-sparkpost/pull/129) Reverted change for emojis in the body of a message, needs further investigation +- [#129](https://github.com/SparkPost/python-sparkpost/pull/129) `substitution_data`, `metadata`, and `tags` are now supplied properly for cc/bcc recipients + + ## [1.3.1] - 2016-11-13 ### Added - Instructions for use with Google Cloud @@ -108,7 +114,8 @@ 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.1...HEAD +[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.2...HEAD +[1.3.2]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.1...v1.3.2 [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 diff --git a/docs/conf.py b/docs/conf.py index 6001a38..1b925e7 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.1' +release = '1.3.2' # 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 f721a0d..a2486fd 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='sparkpost', - version='1.3.1', + version='1.3.2', author='SparkPost', author_email='developers@sparkpost.com', packages=find_packages(), diff --git a/sparkpost/__init__.py b/sparkpost/__init__.py index a77453b..320cd9a 100644 --- a/sparkpost/__init__.py +++ b/sparkpost/__init__.py @@ -9,7 +9,7 @@ from .transmissions import Transmissions -__version__ = '1.3.1' +__version__ = '1.3.2' class SparkPost(object):