Skip to content

Commit

Permalink
Version Bump 5.0.8: Add TOC to README, Add USE_CASES.md
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Aug 24, 2016
1 parent bd3ce7b commit 364f693
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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
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.0.7",
"version": "5.0.8",
"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.0.7';
const VERSION = '5.0.8';

protected
$namespace = 'SendGrid';
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.0.7');
$this->assertEquals(SendGrid::VERSION, '5.0.8');
$this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION);
}

Expand Down

0 comments on commit 364f693

Please sign in to comment.