diff --git a/CHANGELOG.md b/CHANGELOG.md index 36b201cde..2b893811e 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.6.2] - 2017-06-29 ## +### Fix +- PR #410: Adding name for ReplyTo for issue #390 +- Thanks to [Casey Wilson](https://github.com/caseyw) for the PR! + ## [5.6.1] - 2017-06-26 ## ### Fix - Versioning mistake (forgot the .0 at the end) diff --git a/composer.json b/composer.json index 9258f82ed..132fc304d 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.6.1", + "version": "5.6.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 b6a45f0a8..81d1834a3 100644 --- a/lib/SendGrid.php +++ b/lib/SendGrid.php @@ -14,7 +14,7 @@ */ class SendGrid { - const VERSION = '5.6.1'; + const VERSION = '5.6.2'; /** * diff --git a/test/unit/SendGridTest.php b/test/unit/SendGridTest.php index fc75b912c..955c3aab5 100644 --- a/test/unit/SendGridTest.php +++ b/test/unit/SendGridTest.php @@ -70,7 +70,7 @@ public function testHelloWorld() public function testVersion() { - $this->assertEquals(SendGrid::VERSION, '5.6.1'); + $this->assertEquals(SendGrid::VERSION, '5.6.2'); $this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION); }