diff --git a/AUTHORS.md b/AUTHORS.md index 29226af..65eecbf 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -15,3 +15,4 @@ php-sparkpost is maintained by Message Systems. * [@chandon](https://github.com/chandon) * Avi Goldman, [@avrahamgoldman](https://github.com/avrahamgoldman) * Vincent Song, [@vwsong](https://github.com/vwsong) +* Tobias Nyholm, [@Nyholm](https://github.com/Nyholm) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02d5681..ced20dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased][unreleased] +## [2.0.2] - 2016-07-28 +### Fixed +- [#131](https://github.com/SparkPost/php-sparkpost/pull/131) removed any dependency on Guzzle by replacing it with `MessageFactoryDiscovery` + + ## [2.0.1] - 2016-06-29 ### Fixed - [#129](https://github.com/SparkPost/php-sparkpost/pull/129) issue with `content.from` being expected even when using a stored template @@ -69,8 +74,9 @@ 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.1...HEAD -[2.0.0]: https://github.com/sparkpost/php-sparkpost/compare/2.0.0...2.0.1 +[unreleased]: https://github.com/sparkpost/php-sparkpost/compare/2.0.2...HEAD +[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 [2.0.0]: https://github.com/sparkpost/php-sparkpost/compare/1.2.1...2.0.0 [1.2.1]: https://github.com/sparkpost/php-sparkpost/compare/1.2.0...1.2.1 [1.2.0]: https://github.com/sparkpost/php-sparkpost/compare/v1.1.0...1.2.0 diff --git a/lib/SparkPost/SparkPost.php b/lib/SparkPost/SparkPost.php index 46d9b8b..1863dc1 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.1'; + private $version = '2.0.2'; /** * @var HttpClient|HttpAsyncClient used to make requests. diff --git a/test/unit/TestUtils/ClassUtils.php b/test/unit/TestUtils/ClassUtils.php index 1a2f6d4..eec5669 100644 --- a/test/unit/TestUtils/ClassUtils.php +++ b/test/unit/TestUtils/ClassUtils.php @@ -53,7 +53,7 @@ public function getProperty($instance, $property) * * @param object $instance * @param string $property - * @param mixed $value + * @param mixed $value */ public function setProperty($instance, $property, $value) {