diff --git a/composer.json b/composer.json index 481dd57af..fd5ed999b 100644 --- a/composer.json +++ b/composer.json @@ -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": [ diff --git a/lib/SendGrid.php b/lib/SendGrid.php index 83133f1c7..ca95b155d 100644 --- a/lib/SendGrid.php +++ b/lib/SendGrid.php @@ -20,7 +20,7 @@ */ class SendGrid { - const VERSION = '6.2.0'; + const VERSION = '7.0.0'; // @var string protected $namespace = 'SendGrid'; diff --git a/test/unit/SendGridTest.php b/test/unit/SendGridTest.php index bf65764b9..a80ee7001 100644 --- a/test/unit/SendGridTest.php +++ b/test/unit/SendGridTest.php @@ -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;