Skip to content

Commit

Permalink
Version Bump v7.1.1: Fix #667
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Aug 15, 2018
1 parent dce83b3 commit 41696af
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
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": "7.1.0",
"version": "7.1.1",
"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 = '7.1.0';
const VERSION = '7.1.1';

// @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 @@ -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;
Expand Down

0 comments on commit 41696af

Please sign in to comment.