diff options
author | Elmer Thomas <elmer@thinkingserious.com> | 2016-08-24 10:14:38 -0700 |
---|---|---|
committer | Elmer Thomas <elmer@thinkingserious.com> | 2016-08-24 10:14:38 -0700 |
commit | 364f693c2cf4cc6eae4afc4efd2b031fb3f41d50 (patch) | |
tree | 7da1b7f8f075ac0c40985461a0de08f65b0ab942 | |
parent | bd3ce7b4ac51b8b239bad717d3e7fab6c8d9cf0b (diff) | |
download | sendgrid-php-364f693c2cf4cc6eae4afc4efd2b031fb3f41d50.zip sendgrid-php-364f693c2cf4cc6eae4afc4efd2b031fb3f41d50.tar.gz sendgrid-php-364f693c2cf4cc6eae4afc4efd2b031fb3f41d50.tar.bz2 |
Version Bump 5.0.8: Add TOC to README, Add USE_CASES.mdv5.0.8
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | composer.json | 2 | ||||
-rw-r--r-- | lib/SendGrid.php | 2 | ||||
-rw-r--r-- | test/unit/SendGridTest.php | 2 |
4 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 431c81b..c22a063 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.0.8] - 2016-08-24 ## +### Added +- Table of Contents in the README +- Added a [USE_CASES.md](https://github.com/sendgrid/sendgrid-php/blob/master/USE_CASES.md) section, with the first use case example for transactional templates + ## [5.0.7] - 2016-07-25 ## ### Added - [Troubleshooting](https://github.com/sendgrid/sendgrid-php/blob/master/TROUBLESHOOTING.md) section diff --git a/composer.json b/composer.json index 21852e7..1e3657d 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.7", + "version": "5.0.8", "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 9701615..47cce4f 100644 --- a/lib/SendGrid.php +++ b/lib/SendGrid.php @@ -16,7 +16,7 @@ */ class SendGrid { - const VERSION = '5.0.7'; + const VERSION = '5.0.8'; protected $namespace = 'SendGrid'; diff --git a/test/unit/SendGridTest.php b/test/unit/SendGridTest.php index 447912b..1e6013f 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.7'); + $this->assertEquals(SendGrid::VERSION, '5.0.8'); $this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION); } |