Skip to content

Commit 8f9073e

Browse files
Version Bump v5.6.1: Versioning mistake (forgot the .0 at the end)
1 parent 039a202 commit 8f9073e

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ 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.1] - 2017-06-26 ##
7+
### Fix
8+
- Versioning mistake (forgot the .0 at the end)
9+
610
## [5.6.0] - 2017-06-26 ##
711
### Added
812
- Pull #405: Updating docs and non-composer includes

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.6",
4+
"version": "5.6.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
@@ -14,7 +14,7 @@
1414
*/
1515
class SendGrid
1616
{
17-
const VERSION = '5.6.0';
17+
const VERSION = '5.6.1';
1818

1919
/**
2020
*

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.6.0');
73+
$this->assertEquals(SendGrid::VERSION, '5.6.1');
7474
$this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION);
7575
}
7676

0 commit comments

Comments
 (0)