Skip to content

Commit c7bc436

Browse files
Version Bump v5.4.0: #337 API level addressing of the string-only custom arg rule
1 parent d49dc20 commit c7bc436

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
33

44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [5.4.0] - 2017-03-16 ##
7+
### Added
8+
- Pull #337
9+
- API level addressing of the string-only custom arg rule
10+
- Thanks to [Chris Schuld](https://github.com/cbschuld) for the PR!
11+
612
## [5.3.0] - 2017-03-15 ##
713
### Added
814
- Pull #367

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Add SendGrid to your `composer.json` file. If you are not using [Composer](http:
4949
```json
5050
{
5151
"require": {
52-
"sendgrid/sendgrid": "~5.3"
52+
"sendgrid/sendgrid": "~5.4"
5353
}
5454
}
5555
```

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": "5.3.0",
4+
"version": "5.4.0",
55
"homepage": "http://github.com/sendgrid/sendgrid-php",
66
"license": "MIT",
77
"keywords": ["SendGrid", "sendgrid", "email", "send", "grid"],

lib/SendGrid.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
/**
33
* This library allows you to quickly and easily send emails through SendGrid using PHP.
44
*
5-
* PHP version 5.3
6-
*
75
* @author Elmer Thomas <[email protected]>
8-
* @copyright 2016 SendGrid
6+
* @copyright 2017 SendGrid
97
* @license https://opensource.org/licenses/MIT The MIT License
108
* @version GIT: <git_id>
119
* @link http://packagist.org/packages/sendgrid/sendgrid
@@ -16,7 +14,7 @@
1614
*/
1715
class SendGrid
1816
{
19-
const VERSION = '5.3.0';
17+
const VERSION = '5.4.0';
2018

2119
/**
2220
*

test/unit/SendGridTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public static function setUpBeforeClass()
5959

6060
public function testVersion()
6161
{
62-
$this->assertEquals(SendGrid::VERSION, '5.3.0');
62+
$this->assertEquals(SendGrid::VERSION, '5.4.0');
6363
$this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION);
6464
}
6565

0 commit comments

Comments
 (0)