Skip to content

Commit 752c7ac

Browse files
committed
Bump version, update changelog
1 parent a91a8e1 commit 752c7ac

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

Diff for: AUTHORS.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ php-sparkpost is maintained by Message Systems.
1515
* [@chandon](https://github.com/chandon)
1616
* Avi Goldman, [@avrahamgoldman](https://github.com/avrahamgoldman)
1717
* Vincent Song, [@vwsong](https://github.com/vwsong)
18+
* Tobias Nyholm, [@Nyholm](https://github.com/Nyholm)

Diff for: CHANGELOG.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased][unreleased]
66

7+
## [2.0.2] - 2016-07-28
8+
### Fixed
9+
- [#131](https://github.com/SparkPost/php-sparkpost/pull/131) removed any dependency on Guzzle by replacing it with `MessageFactoryDiscovery`
10+
11+
712
## [2.0.1] - 2016-06-29
813
### Fixed
914
- [#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
6974
### Fixed
7075
- README now has proper code blocks denoting PHP language
7176

72-
[unreleased]: https://github.com/sparkpost/php-sparkpost/compare/2.0.1...HEAD
73-
[2.0.0]: https://github.com/sparkpost/php-sparkpost/compare/2.0.0...2.0.1
77+
[unreleased]: https://github.com/sparkpost/php-sparkpost/compare/2.0.2...HEAD
78+
[2.0.2]: https://github.com/sparkpost/php-sparkpost/compare/2.0.1...2.0.2
79+
[2.0.1]: https://github.com/sparkpost/php-sparkpost/compare/2.0.0...2.0.1
7480
[2.0.0]: https://github.com/sparkpost/php-sparkpost/compare/1.2.1...2.0.0
7581
[1.2.1]: https://github.com/sparkpost/php-sparkpost/compare/1.2.0...1.2.1
7682
[1.2.0]: https://github.com/sparkpost/php-sparkpost/compare/v1.1.0...1.2.0

Diff for: lib/SparkPost/SparkPost.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class SparkPost
1313
/**
1414
* @var string Library version, used for setting User-Agent.
1515
*/
16-
private $version = '2.0.1';
16+
private $version = '2.0.2';
1717

1818
/**
1919
* @var HttpClient|HttpAsyncClient used to make requests.

Diff for: test/unit/TestUtils/ClassUtils.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function getProperty($instance, $property)
5353
*
5454
* @param object $instance
5555
* @param string $property
56-
* @param mixed $value
56+
* @param mixed $value
5757
*/
5858
public function setProperty($instance, $property, $value)
5959
{

0 commit comments

Comments
 (0)