Skip to content

Commit b7d88a7

Browse files
Version Bump 4.0.4
1 parent f0a632d commit b7d88a7

5 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [v4.0.4] - (2016-02-18) ##
6+
### Added
7+
- Ability to add scopes to API Keys endpoint [POST]
8+
59
## [v4.0.3] - (2016-02-18) ##
610
### Added
711
- API Keys endpoint [PUT]

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sendgrid/sendgrid",
33
"description": "This library allows you to quickly and easily send emails through SendGrid using PHP.",
4-
"version": "4.0.3",
4+
"version": "4.0.4",
55
"homepage": "http://github.com/sendgrid/sendgrid-php",
66
"license": "MIT",
77
"keywords": ["SendGrid", "sendgrid", "email", "send", "grid"],

lib/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class Client
99
{
10-
const VERSION = '4.0.3';
10+
const VERSION = '4.0.4';
1111

1212
protected
1313
$namespace = 'SendGrid',

lib/SendGrid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
class SendGrid
44
{
5-
const VERSION = '4.0.3';
5+
const VERSION = '4.0.4';
66

77
protected
88
$namespace = 'SendGrid',

test/unit/SendGridTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public function tearDown()
1212

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

0 commit comments

Comments
 (0)