From fbd24c8a79ab75751f47dad77ed1d791f08c9237 Mon Sep 17 00:00:00 2001 From: mhossain Date: Tue, 7 Mar 2017 14:12:32 -0500 Subject: [PATCH 1/2] v1.3.5 release prep --- CHANGELOG.md | 6 ++++++ docs/conf.py | 2 +- setup.py | 2 +- sparkpost/__init__.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b26900..7916a8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased - [Compare to latest release][unreleased] +## [1.3.5] - 2017-03-07 +### Added +- [#141](https://github.com/SparkPost/python-sparkpost/pull/141) Validation for recipients parameter for transmissions +- [#142](https://github.com/SparkPost/python-sparkpost/pull/142) URI parameter support for transmissions list endpoint. Also added deprecation warning + ## [1.3.4] - 2017-02-16 ### Added - Examples for exception handling and using the base resource class @@ -124,6 +129,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Docs on readthedocs.org [unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.4...HEAD +[1.3.5]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.4...v1.3.5 [1.3.4]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.3...v1.3.4 [1.3.3]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.2...v1.3.3 [1.3.2]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.1...v1.3.2 diff --git a/docs/conf.py b/docs/conf.py index a5f9dac..57dc59f 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.4' +release = '1.3.5' # 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 b9ccdb4..e5886b9 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='sparkpost', - version='1.3.4', + version='1.3.5', author='SparkPost', author_email='developers@sparkpost.com', packages=find_packages(), diff --git a/sparkpost/__init__.py b/sparkpost/__init__.py index 5d3e6bf..c504de9 100644 --- a/sparkpost/__init__.py +++ b/sparkpost/__init__.py @@ -9,7 +9,7 @@ from .transmissions import Transmissions -__version__ = '1.3.4' +__version__ = '1.3.5' class SparkPost(object): From 9e8d692a790644ed2f489f2ae44db61391f535dc Mon Sep 17 00:00:00 2001 From: mhossain Date: Tue, 7 Mar 2017 16:02:58 -0500 Subject: [PATCH 2/2] fix unreleased version --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7916a8f..83d0ffd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -128,7 +128,7 @@ 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.4...HEAD +[unreleased]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.5...HEAD [1.3.5]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.4...v1.3.5 [1.3.4]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.3...v1.3.4 [1.3.3]: https://github.com/sparkpost/python-sparkpost/compare/v1.3.2...v1.3.3