Skip to content

Commit c99b27d

Browse files
authored
Merge branch 'main' into fix-tests
2 parents d97fd8e + fe0244a commit c99b27d

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/Mailchimp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
class Mailchimp implements MailchimpApiInterface {
1616

17-
const VERSION = '2.0.0';
17+
const VERSION = '3.0.0-rc6';
1818
const DEFAULT_DATA_CENTER = 'us1';
1919

2020
const ERROR_CODE_BAD_REQUEST = 'BadRequest';

src/Mailchimp2.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
class Mailchimp2 implements MailchimpApiInterface {
1616

17-
const VERSION = '2.0.0';
17+
const VERSION = '3.0.0-rc6';
1818
const DEFAULT_DATA_CENTER = 'us1';
1919

2020
const ERROR_CODE_BAD_REQUEST = 'BadRequest';

tests/MailchimpTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ public function testGetAccount() {
2828
*/
2929
public function testVersion() {
3030
$mc = new Mailchimp(['api_user' => null, 'api_key' => null]);
31-
$this->assertEquals($mc::VERSION, '2.0.0');
3231
$this->assertEquals(json_decode(file_get_contents('composer.json'))->version, $mc::VERSION);
3332
}
3433

0 commit comments

Comments
 (0)