summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElmer Thomas <elmer@thinkingserious.com>2016-10-11 14:24:55 -0700
committerElmer Thomas <elmer@thinkingserious.com>2016-10-11 14:24:55 -0700
commitdfcd38ca380a8257e5924a83c5861a096cd66aac (patch)
tree7c7f098864e8936a5c9b975814e8dc01aafff5af
parent571676e91e8be9ee1b6030e04410d6210663b0a5 (diff)
downloadsendgrid-php-5.1.1.zip
sendgrid-php-5.1.1.tar.gz
sendgrid-php-5.1.1.tar.bz2
Version Bump v5.1.1: #307, fixes #276 phpdoc and style fixesv5.1.1
-rw-r--r--CHANGELOG.md6
-rw-r--r--composer.json2
-rw-r--r--lib/SendGrid.php2
-rw-r--r--test/unit/SendGridTest.php2
4 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f6ecf27..5ed19ba 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.1] - 2016-10-11 ##
+### Added
+- Pull #307, Fixes #276
+- Adds phpdoc and style fixes
+- Thanks to [Avishkar Autar](https://github.com/aautar) for the PR!
+
## [5.1.0] - 2016-09-29 ##
### Fixed
- Pull #295: [Upgrade sendgrid/php-http-client](https://github.com/sendgrid/sendgrid-php/pull/295/files)
diff --git a/composer.json b/composer.json
index 1f7c037..33640af 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.0",
+ "version": "5.1.1",
"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 d516cbf..0cc04d3 100644
--- a/lib/SendGrid.php
+++ b/lib/SendGrid.php
@@ -16,7 +16,7 @@
*/
class SendGrid
{
- const VERSION = '5.1.0';
+ const VERSION = '5.1.1';
/**
*
diff --git a/test/unit/SendGridTest.php b/test/unit/SendGridTest.php
index 53b6436..3444f08 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.0');
+ $this->assertEquals(SendGrid::VERSION, '5.1.1');
$this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION);
}