From bc6e1fca4d4c626031c849b639db436df72b6403 Mon Sep 17 00:00:00 2001 From: Elmer Thomas Date: Fri, 3 Mar 2017 20:07:26 -0800 Subject: [PATCH] Version Bump v 5.2.3: Pull #334 Fixed serialization of empty JSON objects, fixes #332 & #314 --- CHANGELOG.md | 6 ++++++ composer.json | 2 +- lib/SendGrid.php | 2 +- test/unit/SendGridTest.php | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d27a44bb4..7c2632c9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [5.2.3] - 2017-03-03 ## +### Fixed +- Pull #334 +- Fixed serialization of empty JSON objects, fixes #332 & #314 +- Thanks to [Matthew Dreyer](https://github.com/Dreyer) for the PR! + ## [5.2.2] - 2017-03-03 ## ### Fixed - Pull #323 diff --git a/composer.json b/composer.json index bdd22b9e4..ae5f21707 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.2.2", + "version": "5.2.3", "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 5d029c67d..ec751f7ed 100644 --- a/lib/SendGrid.php +++ b/lib/SendGrid.php @@ -16,7 +16,7 @@ */ class SendGrid { - const VERSION = '5.2.2'; + const VERSION = '5.2.3'; /** * diff --git a/test/unit/SendGridTest.php b/test/unit/SendGridTest.php index a68fa682b..345328711 100644 --- a/test/unit/SendGridTest.php +++ b/test/unit/SendGridTest.php @@ -59,7 +59,7 @@ public static function setUpBeforeClass() public function testVersion() { - $this->assertEquals(SendGrid::VERSION, '5.2.2'); + $this->assertEquals(SendGrid::VERSION, '5.2.3'); $this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION); }