summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElmer Thomas <elmer@thinkingserious.com>2016-09-13 10:27:23 -0700
committerElmer Thomas <elmer@thinkingserious.com>2016-09-13 10:27:23 -0700
commitfbf43e7851463c49d6d45382151fbd2e90028af3 (patch)
tree7b3be0f038ee90dac7515faf06af4aa59fa2204a
parent25ee479cbbd946a270a6b9a0e09c09ae045e401f (diff)
downloadsendgrid-php-origin/mail.zip
sendgrid-php-origin/mail.tar.gz
sendgrid-php-origin/mail.tar.bz2
Version Bump v5.0.9: Pull #289 JsonSerializablev5.0.9origin/mailorigin/inbound
-rw-r--r--CHANGELOG.md5
-rw-r--r--README.md2
-rw-r--r--composer.json2
-rw-r--r--lib/SendGrid.php2
-rw-r--r--test/unit/SendGridTest.php2
5 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c22a063..44cd103 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
+## [5.0.9] - 2016-09-13 ##
+### Fixed
+- Pull request #289: [Replace "\jsonSerializable" with "\JsonSerializable" ](https://github.com/sendgrid/sendgrid-php/pull/289)
+- Thanks to [Issei.M](https://github.com/issei-m) for the pull request!
+
## [5.0.8] - 2016-08-24 ##
### Added
- Table of Contents in the README
diff --git a/README.md b/README.md
index 852645f..33a7bc5 100644
--- a/README.md
+++ b/README.md
@@ -49,7 +49,7 @@ Add SendGrid to your `composer.json` file. If you are not using [Composer](http:
```json
{
"require": {
- "sendgrid/sendgrid": "~5.0.7"
+ "sendgrid/sendgrid": "~5.0.9"
}
}
```
diff --git a/composer.json b/composer.json
index 1e3657d..49daf34 100644
--- a/composer.json
+++ b/composer.json
@@ -1,7 +1,7 @@
{
"name": "sendgrid/sendgrid",
"description": "This library allows you to quickly and easily send emails through SendGrid using PHP.",
- "version": "5.0.8",
+ "version": "5.0.9",
"homepage": "http://github.com/sendgrid/sendgrid-php",
"license": "MIT",
"keywords": ["SendGrid", "sendgrid", "email", "send", "grid"],
diff --git a/lib/SendGrid.php b/lib/SendGrid.php
index 47cce4f..b8c6d58 100644
--- a/lib/SendGrid.php
+++ b/lib/SendGrid.php
@@ -16,7 +16,7 @@
*/
class SendGrid
{
- const VERSION = '5.0.8';
+ const VERSION = '5.0.9';
protected
$namespace = 'SendGrid';
diff --git a/test/unit/SendGridTest.php b/test/unit/SendGridTest.php
index 1e6013f..a1cd8b9 100644
--- a/test/unit/SendGridTest.php
+++ b/test/unit/SendGridTest.php
@@ -59,7 +59,7 @@ class SendGridTest_SendGrid extends \PHPUnit_Framework_TestCase
public function testVersion()
{
- $this->assertEquals(SendGrid::VERSION, '5.0.8');
+ $this->assertEquals(SendGrid::VERSION, '5.0.9');
$this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION);
}