Skip to content

Commit

Permalink
Version Bump v5.1.2: Pull #330, Fixes #320 Delete subaccounts returns…
Browse files Browse the repository at this point in the history
… 200 issue resolved
  • Loading branch information
thinkingserious committed Nov 17, 2016
1 parent 31e8280 commit 46f85e6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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"],
Expand Down
2 changes: 1 addition & 1 deletion lib/SendGrid.php
Expand Up @@ -16,7 +16,7 @@
*/
class SendGrid
{
const VERSION = '5.1.1';
const VERSION = '5.1.2';

/**
*
Expand Down
2 changes: 1 addition & 1 deletion test/unit/SendGridTest.php
Expand Up @@ -59,7 +59,7 @@ public static function setUpBeforeClass()

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);
}

Expand Down

0 comments on commit 46f85e6

Please sign in to comment.