Skip to content

Commit

Permalink
Version Bump v7.0.0: BREAKING CHANGE - please see CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed May 19, 2018
1 parent 6cb4f07 commit b659d96
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sendgrid/sendgrid",
"description": "This library allows you to quickly and easily send emails through SendGrid using PHP.",
"version": "6.2.0",
"version": "7.0.0",
"homepage": "http://github.com/sendgrid/sendgrid-php",
"license": "MIT",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion lib/SendGrid.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
class SendGrid
{
const VERSION = '6.2.0';
const VERSION = '7.0.0';

// @var string
protected $namespace = 'SendGrid';
Expand Down
2 changes: 1 addition & 1 deletion test/unit/SendGridTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class SendGridTest extends BaseTestClass
*/
public function testVersionIsCorrect()
{
$this->assertEquals(\SendGrid::VERSION, '6.2.0');
$this->assertEquals(\SendGrid::VERSION, '7.0.0');
$version = json_decode(
file_get_contents(__DIR__ . '/../../composer.json')
)->version;
Expand Down

0 comments on commit b659d96

Please sign in to comment.