Skip to content

Commit

Permalink
Release 5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pkopac committed May 22, 2023
1 parent 755097d commit 7dade6a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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.1.0';
private $apiVersion = '5.1.1';

/**
* @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.1.0/PHP-".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION, $mock->getUserAgent());
$this->assertEquals("chartmogul-php/5.1.1/PHP-".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION, $mock->getUserAgent());
}

public function testGetBasicAuthHeader()
Expand Down

0 comments on commit 7dade6a

Please sign in to comment.