Skip to content

Commit

Permalink
Version Bump 4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Dec 4, 2015
1 parent d372867 commit 6f46520
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,7 +2,12 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [v4.0.1] - (2015-12-03) ##
### Fixed
- HTTP 406 Not Acceptable Errors [#177](https://github.com/sendgrid/sendgrid-php/issues/177)

## [v4.0.0] - (2015-10-16) ##
### Added
- Added support for accessing the [SendGrid Web API v3 endpoints](https://sendgrid.com/docs/API_Reference/Web_API_v3/index.html)
- Implemented part of the /api_keys, /groups and /suppressions endpoints

Expand Down
2 changes: 1 addition & 1 deletion 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": "4.0.0",
"version": "4.0.1",
"homepage": "http://github.com/sendgrid/sendgrid-php",
"license": "MIT",
"keywords": ["SendGrid", "sendgrid", "email", "send", "grid"],
Expand Down
2 changes: 1 addition & 1 deletion lib/Client.php
Expand Up @@ -6,7 +6,7 @@

class Client
{
const VERSION = '4.0.0';
const VERSION = '4.0.1';

protected
$namespace = 'SendGrid',
Expand Down
2 changes: 1 addition & 1 deletion lib/SendGrid.php
Expand Up @@ -2,7 +2,7 @@

class SendGrid
{
const VERSION = '4.0.0';
const VERSION = '4.0.1';

protected
$namespace = 'SendGrid',
Expand Down
2 changes: 1 addition & 1 deletion test/unit/SendGridTest.php
Expand Up @@ -12,7 +12,7 @@ public function tearDown()

public function testVersion()
{
$this->assertEquals(SendGrid::VERSION, '4.0.0');
$this->assertEquals(SendGrid::VERSION, '4.0.1');
$this->assertEquals(json_decode(file_get_contents(__DIR__ . '/../../composer.json'))->version, SendGrid::VERSION);
}

Expand Down

0 comments on commit 6f46520

Please sign in to comment.