Skip to content

Commit 95528ca

Browse files
committed
Updated release version to 1.0.2.
1 parent ce5ed11 commit 95528ca

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thinkshout/mailchimp-api-php",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"type": "library",
55
"description": "PHP library for v3 of the MailChimp API",
66
"keywords": ["mailchimp", "mail"],

src/Mailchimp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class Mailchimp {
99

10-
const VERSION = '1.0.1';
10+
const VERSION = '1.0.2';
1111
const DEFAULT_DATA_CENTER = 'us1';
1212

1313
const ERROR_CODE_BAD_REQUEST = 'BadRequest';

tests/MailchimpTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function testGetAccount() {
2020
*/
2121
public function testVersion() {
2222
$mc = new Mailchimp();
23-
$this->assertEquals($mc::VERSION, '1.0.1');
23+
$this->assertEquals($mc::VERSION, '1.0.2');
2424
$this->assertEquals(json_decode(file_get_contents('composer.json'))->version, $mc::VERSION);
2525
}
2626
}

0 commit comments

Comments
 (0)