summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAvi Goldman <avrahamymgoldman@gmail.com>2016-07-28 12:07:28 -0400
committerAvi Goldman <avrahamymgoldman@gmail.com>2016-07-28 12:07:28 -0400
commit752c7ac875d430b096c79e9ab1fd2ee16c1d4c94 (patch)
tree5b7d55a547b593f7852e88e4abe70a1763874d07
parenta91a8e11845ffe7add1413de054af1025a2af3f3 (diff)
downloadphp-sparkpost-752c7ac875d430b096c79e9ab1fd2ee16c1d4c94.zip
php-sparkpost-752c7ac875d430b096c79e9ab1fd2ee16c1d4c94.tar.gz
php-sparkpost-752c7ac875d430b096c79e9ab1fd2ee16c1d4c94.tar.bz2
Bump version, update changelog2.0.2
-rw-r--r--AUTHORS.md1
-rw-r--r--CHANGELOG.md10
-rw-r--r--lib/SparkPost/SparkPost.php2
-rw-r--r--test/unit/TestUtils/ClassUtils.php2
4 files changed, 11 insertions, 4 deletions
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 @@ class ClassUtils
*
* @param object $instance
* @param string $property
- * @param mixed $value
+ * @param mixed $value
*/
public function setProperty($instance, $property, $value)
{