Skip to content

Commit a409932

Browse files
committed
Increment library version number.
1 parent 77f5972 commit a409932

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.9",
3+
"version": "1.0.10",
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
@@ -13,7 +13,7 @@
1313
*/
1414
class Mailchimp {
1515

16-
const VERSION = '1.0.9';
16+
const VERSION = '1.0.10';
1717
const DEFAULT_DATA_CENTER = 'us1';
1818

1919
const ERROR_CODE_BAD_REQUEST = 'BadRequest';

tests/MailchimpTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function testGetAccount() {
2727
*/
2828
public function testVersion() {
2929
$mc = new Mailchimp();
30-
$this->assertEquals($mc::VERSION, '1.0.9');
30+
$this->assertEquals($mc::VERSION, '1.0.10');
3131
$this->assertEquals(json_decode(file_get_contents('composer.json'))->version, $mc::VERSION);
3232
}
3333

0 commit comments

Comments
 (0)