Skip to content

Commit 039a202

Browse files
Version Bump v5.6.0: Pull #405: Updating docs and non-composer includes
1 parent 30454ba commit 039a202

File tree

7 files changed

+15
-8
lines changed

7 files changed

+15
-8
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ composer.lock
44
vendor
55
.env*
66
sendgrid.env
7-
sendgrid-php.php
87
composer.phar
98
.editorconfig
109
test.php

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ 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.6.0] - 2017-06-26 ##
7+
### Added
8+
- Pull #405: Updating docs and non-composer includes
9+
- Thanks to [Casey Wilson](https://github.com/caseyw) for the PR!
10+
611
## [5.5.1] - 2017-05-18 ##
712
### Fixed
813
- Pull #396: Use `print_r` instead of `echo` on Arrays

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,18 @@ Add SendGrid to your `composer.json` file. If you are not using [Composer](http:
4949
```json
5050
{
5151
"require": {
52-
"sendgrid/sendgrid": "~5.5"
52+
"sendgrid/sendgrid": "~5.6"
5353
}
5454
}
5555
```
5656

5757
#### Alternative: Install package from zip
5858

59-
If you are not using Composer, simply download and install the **[latest packaged release of the library as a zip](https://sendgrid-open-source.s3.amazonaws.com/sendgrid-php/sendgrid-php.zip)**.
59+
If you are not using Composer, simply download and install the **[latest packaged release of the library as a zip](https://github.com/sendgrid/sendgrid-php/archive/master.zip)**.
6060

61-
[**⬇︎ Download Packaged Library ⬇︎**](https://sendgrid-open-source.s3.amazonaws.com/sendgrid-php/sendgrid-php.zip)
61+
[**⬇︎ Download Packaged Library ⬇︎**](https://github.com/sendgrid/sendgrid-php/archive/master.zip)
6262

63-
Previous versions of the library can be found in the [version index](https://sendgrid-open-source.s3.amazonaws.com/index.html).
63+
Previous versions of the library can be found in the [version index](https://sendgrid-open-source.s3.amazonaws.com/index.html) or downloaded directly from GitHub.
6464

6565
## Dependencies
6666

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

lib/SendGrid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
class SendGrid
1616
{
17-
const VERSION = '5.5.1';
17+
const VERSION = '5.6.0';
1818

1919
/**
2020
*

sendgrid-php.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
require __DIR__ . '/vendor/autoload.php';
3+
?>

test/unit/SendGridTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public function testHelloWorld()
7070

7171
public function testVersion()
7272
{
73-
$this->assertEquals(SendGrid::VERSION, '5.5.1');
73+
$this->assertEquals(SendGrid::VERSION, '5.6.0');
7474
$this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION);
7575
}
7676

0 commit comments

Comments
 (0)