Skip to content

Commit

Permalink
Version Bump 4.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Feb 18, 2016
1 parent f0a632d commit b7d88a7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [v4.0.4] - (2016-02-18) ##
### Added
- Ability to add scopes to API Keys endpoint [POST]

## [v4.0.3] - (2016-02-18) ##
### Added
- API Keys endpoint [PUT]
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sendgrid/sendgrid",
"description": "This library allows you to quickly and easily send emails through SendGrid using PHP.",
"version": "4.0.3",
"version": "4.0.4",
"homepage": "http://github.com/sendgrid/sendgrid-php",
"license": "MIT",
"keywords": ["SendGrid", "sendgrid", "email", "send", "grid"],
Expand Down
2 changes: 1 addition & 1 deletion lib/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class Client
{
const VERSION = '4.0.3';
const VERSION = '4.0.4';

protected
$namespace = 'SendGrid',
Expand Down
2 changes: 1 addition & 1 deletion lib/SendGrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class SendGrid
{
const VERSION = '4.0.3';
const VERSION = '4.0.4';

protected
$namespace = 'SendGrid',
Expand Down
2 changes: 1 addition & 1 deletion test/unit/SendGridTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public function tearDown()

public function testVersion()
{
$this->assertEquals(SendGrid::VERSION, '4.0.3');
$this->assertEquals(SendGrid::VERSION, '4.0.4');
$this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION);
}

Expand Down

0 comments on commit b7d88a7

Please sign in to comment.