diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-09-13 10:27:23 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-09-13 10:27:23 -0700 |
commit | fbf43e7851463c49d6d45382151fbd2e90028af3 (patch) | |
tree | 7b3be0f038ee90dac7515faf06af4aa59fa2204a | |
parent | 25ee479cbbd946a270a6b9a0e09c09ae045e401f (diff) | |
download | sendgrid-php-origin/inbound.zip sendgrid-php-origin/inbound.tar.gz sendgrid-php-origin/inbound.tar.bz2 |
Version Bump v5.0.9: Pull #289 JsonSerializablev5.0.9origin/mailorigin/inbound
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | composer.json | 2 | ||||
-rw-r--r-- | lib/SendGrid.php | 2 | ||||
-rw-r--r-- | test/unit/SendGridTest.php | 2 |
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 @@ -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); } |