summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md6
-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, 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)
diff --git a/README.md b/README.md
index 33a7bc5..28c8128 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.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);
}