Skip to content

Commit

Permalink
Release v5.1.0 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
briwa authored Apr 18, 2023
1 parent 55c2d0d commit afa937a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Customer.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @property-read string $email
* @property-read string $status
* @property-read string $customer_since
* @property-read string $attributes
* @property-read array $attributes
* @property-read string $address
* @property-read string $mrr
* @property-read string $arr
Expand Down
2 changes: 1 addition & 1 deletion src/Http/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Client implements ClientInterface
/**
* @var string
*/
private $apiVersion = '5.0.1';
private $apiVersion = '5.1.0';

/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Http/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function testGetUserAgent()
->onlyMethods([])
->getMock();

$this->assertEquals("chartmogul-php/5.0.1/PHP-".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION, $mock->getUserAgent());
$this->assertEquals("chartmogul-php/5.1.0/PHP-".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION, $mock->getUserAgent());
}

public function testGetBasicAuthHeader()
Expand Down

0 comments on commit afa937a

Please sign in to comment.