summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md4
-rw-r--r--composer.json2
-rw-r--r--lib/SendGrid.php2
-rw-r--r--test/unit/SendGridTest.php2
4 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bb6d04a..0ce1a99 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
+## [5.0.4] - 2016-07-07 ##
+### Added
+- Tests now mocked automatically against [prism](https://stoplight.io/prism/)
+
## [5.0.3] - 2016-07-05 ##
### Updated
- Content based on our updated [Swagger/OAI doc](https://github.com/sendgrid/sendgrid-oai)
diff --git a/composer.json b/composer.json
index 96fd565..e5f0043 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": "5.0.3",
+ "version": "5.0.4",
"homepage": "http://github.com/sendgrid/sendgrid-php",
"license": "MIT",
"keywords": ["SendGrid", "sendgrid", "email", "send", "grid"],
diff --git a/lib/SendGrid.php b/lib/SendGrid.php
index e698cd6..6ce3593 100644
--- a/lib/SendGrid.php
+++ b/lib/SendGrid.php
@@ -16,7 +16,7 @@
*/
class SendGrid
{
- const VERSION = '5.0.3';
+ const VERSION = '5.0.4';
protected
$namespace = 'SendGrid';
diff --git a/test/unit/SendGridTest.php b/test/unit/SendGridTest.php
index bacce19..ecbbdca 100644
--- a/test/unit/SendGridTest.php
+++ b/test/unit/SendGridTest.php
@@ -59,7 +59,7 @@ class SendGridTest_SendGrid extends \PHPUnit_Framework_TestCase
public function testVersion()
{
- $this->assertEquals(SendGrid::VERSION, '5.0.3');
+ $this->assertEquals(SendGrid::VERSION, '5.0.4');
$this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION);
}