diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-09-29 11:09:52 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-09-29 11:09:52 -0700 |
commit | c6d65f6b32a84ea446b07451acfbf8e8e0b13d08 (patch) | |
tree | 03763e10183f3dafe597a1a4a46729c1a7a24489 | |
parent | 1165725a23eba4a21465747ca8f01103e0000af2 (diff) | |
download | sendgrid-php-c6d65f6b32a84ea446b07451acfbf8e8e0b13d08.zip sendgrid-php-c6d65f6b32a84ea446b07451acfbf8e8e0b13d08.tar.gz sendgrid-php-c6d65f6b32a84ea446b07451acfbf8e8e0b13d08.tar.bz2 |
Version Bump v5.1.0: #295 Upgrade sendgrid/php-http-clientv5.1.0
-rw-r--r-- | CHANGELOG.md | 6 | ||||
-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, 10 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 44cd103..138f429 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [5.1.0] - 2016-09-29 ## +### Fixed +- Pull #295: [Upgrade sendgrid/php-http-client](https://github.com/sendgrid/sendgrid-php/pull/295/files) +- This adds getters for certain properties, please see [this pull request](https://github.com/sendgrid/php-http-client/pull/9) for details +- Thakns to [Arjan Keeman](https://github.com/akeeman) for the pull request! + ## [5.0.9] - 2016-09-13 ## ### Fixed - Pull request #289: [Replace "\jsonSerializable" with "\JsonSerializable" ](https://github.com/sendgrid/sendgrid-php/pull/289) @@ -49,7 +49,7 @@ Add SendGrid to your `composer.json` file. If you are not using [Composer](http: ```json { "require": { - "sendgrid/sendgrid": "~5.0.9" + "sendgrid/sendgrid": "~5.1" } } ``` diff --git a/composer.json b/composer.json index a72e000..1f7c037 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.9", + "version": "5.1.0", "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 b8c6d58..3705719 100644 --- a/lib/SendGrid.php +++ b/lib/SendGrid.php @@ -16,7 +16,7 @@ */ class SendGrid { - const VERSION = '5.0.9'; + const VERSION = '5.1.0'; protected $namespace = 'SendGrid'; diff --git a/test/unit/SendGridTest.php b/test/unit/SendGridTest.php index cb846cd..53b6436 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.9'); + $this->assertEquals(SendGrid::VERSION, '5.1.0'); $this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION); } |