From 584afe693e2f92ad6de85f228d5f0767f9b1942c Mon Sep 17 00:00:00 2001 From: Avi Goldman Date: Sat, 7 Jan 2017 10:02:51 -0500 Subject: [PATCH 1/3] updated changelog --- CHANGELOG.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 483cd55..e5f5367 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,25 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased][unreleased] +## [2.1.0] - 2017-01-09 +### Added +- [#161](https://github.com/SparkPost/php-sparkpost/pull/161) added example for sending email with attachment +- [#159](https://github.com/SparkPost/php-sparkpost/pull/159) added `debug` option for seeing the full request sent to SparkPost +- [#151](https://github.com/SparkPost/php-sparkpost/pull/151) added packagist badges +- [#139](https://github.com/SparkPost/php-sparkpost/pull/139) added examples for message events and templates + +### Changed +- [#150](https://github.com/SparkPost/php-sparkpost/issues/150) renamed the `Resource` class to `ResourceBase` since resource soft reserved in php 7 +- [#137](https://github.com/SparkPost/php-sparkpost/pull/137) cleaned up tests and post install scripts +- [#138](https://github.com/SparkPost/php-sparkpost/pull/138) added PHP 7.1 as a test environment + +### Fixed +- [#156](https://github.com/SparkPost/php-sparkpost/pull/156) fixed typo in README.md +- [#152](https://github.com/SparkPost/php-sparkpost/issues/152) fixed propagation of coverage tests to coveralls.io +- [#147](https://github.com/SparkPost/php-sparkpost/pull/147) fixed examples in README.md +- [#139](https://github.com/SparkPost/php-sparkpost/pull/139) fixed the ability to send using recipient lists +- Issue[#141](https://github.com/SparkPost/php-sparkpost/issues/141) removed form feeds from the JSON body sent to the API + ## [2.0.3] - 2016-07-28 ### Fixed - Issue [#135](https://github.com/SparkPost/php-sparkpost/issues/135) reported `Http\Discovery\NotFoundException` caused by 2.0.2 update. @@ -78,7 +97,8 @@ This major release included a complete refactor of the library to be a thin HTTP ### Fixed - README now has proper code blocks denoting PHP language -[unreleased]: https://github.com/sparkpost/php-sparkpost/compare/2.0.3...HEAD +[unreleased]: https://github.com/sparkpost/php-sparkpost/compare/2.1.0...HEAD +[2.1.0]: https://github.com/sparkpost/php-sparkpost/compare/2.0.3...2.1.0 [2.0.3]: https://github.com/sparkpost/php-sparkpost/compare/2.0.2...2.0.3 [2.0.2]: https://github.com/sparkpost/php-sparkpost/compare/2.0.1...2.0.2 [2.0.1]: https://github.com/sparkpost/php-sparkpost/compare/2.0.0...2.0.1 From d8f5f8021077673ddbedee283d4a335e4339b809 Mon Sep 17 00:00:00 2001 From: Avi Goldman Date: Sat, 7 Jan 2017 10:03:08 -0500 Subject: [PATCH 2/3] updated version in SparkPost class --- lib/SparkPost/SparkPost.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SparkPost/SparkPost.php b/lib/SparkPost/SparkPost.php index 601d063..00b3d6f 100644 --- a/lib/SparkPost/SparkPost.php +++ b/lib/SparkPost/SparkPost.php @@ -13,7 +13,7 @@ class SparkPost /** * @var string Library version, used for setting User-Agent */ - private $version = '2.0.3'; + private $version = '2.1.0'; /** * @var HttpClient|HttpAsyncClient used to make requests From 31e261fa7e9619eebdf7412b32f404da48e64877 Mon Sep 17 00:00:00 2001 From: Avi Goldman Date: Tue, 10 Jan 2017 09:22:51 -0500 Subject: [PATCH 3/3] updated changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5f5367..541724a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [2.1.0] - 2017-01-09 ### Added -- [#161](https://github.com/SparkPost/php-sparkpost/pull/161) added example for sending email with attachment +- [#161](https://github.com/SparkPost/php-sparkpost/pull/161) added example for sending email with attachment and simplified the examples setup - [#159](https://github.com/SparkPost/php-sparkpost/pull/159) added `debug` option for seeing the full request sent to SparkPost - [#151](https://github.com/SparkPost/php-sparkpost/pull/151) added packagist badges - [#139](https://github.com/SparkPost/php-sparkpost/pull/139) added examples for message events and templates