summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElmer Thomas <elmer@thinkingserious.com>2016-11-17 15:05:01 -0800
committerElmer Thomas <elmer@thinkingserious.com>2016-11-17 15:05:01 -0800
commit46f85e69ec6a36d4674e7131e442fbecdaa5d183 (patch)
treee241b232c1f41b1fe418a1ad62c7c855c050566c
parent31e8280c0f01aad4ae447f0689f46dde335157bd (diff)
downloadsendgrid-php-46f85e69ec6a36d4674e7131e442fbecdaa5d183.zip
sendgrid-php-46f85e69ec6a36d4674e7131e442fbecdaa5d183.tar.gz
sendgrid-php-46f85e69ec6a36d4674e7131e442fbecdaa5d183.tar.bz2
Version Bump v5.1.2: Pull #330, Fixes #320 Delete subaccounts returns 200 issue resolvedHEADv5.1.2origin/masterorigin/HEADmaster
-rw-r--r--CHANGELOG.md7
-rw-r--r--composer.json2
-rw-r--r--lib/SendGrid.php2
-rw-r--r--test/unit/SendGridTest.php2
4 files changed, 10 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5ed19ba..7aeeb92 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
+## [5.1.2] - 2016-10-11 ##
+### Added
+- Pull #330, Fixes #320
+- Delete subaccounts returns 200 issue resolved
+- The fix happened at the [php-http-client](https://github.com/sendgrid/php-http-client/releases/tag/v3.5.1) dependency.
+- Thanks to [emil](https://github.com/emilva) for the PR!
+
## [5.1.1] - 2016-10-11 ##
### Added
- Pull #307, Fixes #276
diff --git a/composer.json b/composer.json
index 6379de6..73e5812 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.1.1",
+ "version": "5.1.2",
"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 0cc04d3..20e0912 100644
--- a/lib/SendGrid.php
+++ b/lib/SendGrid.php
@@ -16,7 +16,7 @@
*/
class SendGrid
{
- const VERSION = '5.1.1';
+ const VERSION = '5.1.2';
/**
*
diff --git a/test/unit/SendGridTest.php b/test/unit/SendGridTest.php
index 3444f08..9aa5856 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.1.1');
+ $this->assertEquals(SendGrid::VERSION, '5.1.2');
$this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION);
}