From 41696af19246f4501ae3c47ee7b399ad4117556b Mon Sep 17 00:00:00 2001 From: Elmer Thomas Date: Wed, 15 Aug 2018 08:35:47 -0700 Subject: [PATCH] Version Bump v7.1.1: Fix #667 --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- composer.json | 2 +- lib/SendGrid.php | 2 +- test/unit/SendGridTest.php | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7a022cb7..e88af7507 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/). +## [7.1.1] - 2018-08-15 ## +### Fixed +- Closes [#667](https://github.com/sendgrid/sendgrid-php/issues/667), PR [#668](https://github.com/sendgrid/sendgrid-php/pull/668): isBase64 function fix. Thanks to [Tigran M](https://github.com/developer-devPHP) for bringing this to our attention! + ## [7.1.0] - 2018-08-14 ## ### Added diff --git a/README.md b/README.md index 5ba43030f..d103a195c 100644 --- a/README.md +++ b/README.md @@ -70,9 +70,9 @@ Add SendGrid to your `composer.json` file. If you are not using [Composer](http: #### Alternative: Install package from zip -If you are not using Composer, simply download and install the **[latest packaged release of the library as a zip](https://github.com/sendgrid/sendgrid-php/releases/download/v7.1.0/sendgrid-php.zip)**. +If you are not using Composer, simply download and install the **[latest packaged release of the library as a zip](https://github.com/sendgrid/sendgrid-php/releases/download/v7.1.1/sendgrid-php.zip)**. -[**⬇︎ Download Packaged Library ⬇︎**](https://github.com/sendgrid/sendgrid-php/releases/download/v7.1.0/sendgrid-php.zip) +[**⬇︎ Download Packaged Library ⬇︎**](https://github.com/sendgrid/sendgrid-php/releases/download/v7.1.1/sendgrid-php.zip) Previous versions of the library can be found in the [version index](https://sendgrid-open-source.s3.amazonaws.com/index.html) or downloaded directly from [GitHub](https://github.com/sendgrid/sendgrid-php/releases). diff --git a/composer.json b/composer.json index 67140233b..4fd8fc9d2 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": "7.1.0", + "version": "7.1.1", "homepage": "http://github.com/sendgrid/sendgrid-php", "license": "MIT", "keywords": [ diff --git a/lib/SendGrid.php b/lib/SendGrid.php index 20f80b087..61cc1fe7b 100644 --- a/lib/SendGrid.php +++ b/lib/SendGrid.php @@ -20,7 +20,7 @@ */ class SendGrid { - const VERSION = '7.1.0'; + const VERSION = '7.1.1'; // @var string protected $namespace = 'SendGrid'; diff --git a/test/unit/SendGridTest.php b/test/unit/SendGridTest.php index 866e2bd99..5d95e3276 100644 --- a/test/unit/SendGridTest.php +++ b/test/unit/SendGridTest.php @@ -26,7 +26,7 @@ class SendGridTest extends BaseTestClass */ public function testVersionIsCorrect() { - $this->assertEquals(\SendGrid::VERSION, '7.1.0'); + $this->assertEquals(\SendGrid::VERSION, '7.1.1'); $version = json_decode( file_get_contents(__DIR__ . '/../../composer.json') )->version;