Skip to content

Commit dfcd38c

Browse files
Version Bump v5.1.1: #307, fixes #276 phpdoc and style fixes
1 parent 571676e commit dfcd38c

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

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.1.1] - 2016-10-11 ##
7+
### Added
8+
- Pull #307, Fixes #276
9+
- Adds phpdoc and style fixes
10+
- Thanks to [Avishkar Autar](https://github.com/aautar) for the PR!
11+
612
## [5.1.0] - 2016-09-29 ##
713
### Fixed
814
- Pull #295: [Upgrade sendgrid/php-http-client](https://github.com/sendgrid/sendgrid-php/pull/295/files)

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.1.0",
4+
"version": "5.1.1",
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
@@ -16,7 +16,7 @@
1616
*/
1717
class SendGrid
1818
{
19-
const VERSION = '5.1.0';
19+
const VERSION = '5.1.1';
2020

2121
/**
2222
*

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.1.0');
62+
$this->assertEquals(SendGrid::VERSION, '5.1.1');
6363
$this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION);
6464
}
6565

0 commit comments

Comments
 (0)