Skip to content

Commit

Permalink
Update the version of the mailchimp-api-php library on the
Browse files Browse the repository at this point in the history
composer.json, Mailchimp.php and MailchimpTest.php files, from 1.0.3 to
1.0.4.
  • Loading branch information
amyvs committed Sep 6, 2016
1 parent 74c8486 commit 11f1f1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thinkshout/mailchimp-api-php",
"version": "1.0.3",
"version": "1.0.4",
"type": "library",
"description": "PHP library for v3 of the MailChimp API",
"keywords": ["mailchimp", "mail"],
Expand Down
2 changes: 1 addition & 1 deletion src/Mailchimp.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
class Mailchimp {

const VERSION = '1.0.3';
const VERSION = '1.0.4';
const DEFAULT_DATA_CENTER = 'us1';

const ERROR_CODE_BAD_REQUEST = 'BadRequest';
Expand Down
2 changes: 1 addition & 1 deletion tests/MailchimpTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function testGetAccount() {
*/
public function testVersion() {
$mc = new Mailchimp();
$this->assertEquals($mc::VERSION, '1.0.3');
$this->assertEquals($mc::VERSION, '1.0.4');
$this->assertEquals(json_decode(file_get_contents('composer.json'))->version, $mc::VERSION);
}

Expand Down

0 comments on commit 11f1f1f

Please sign in to comment.