Skip to content

Commit

Permalink
Release v6.3.0 (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilpavlicko committed Mar 26, 2024
1 parent be1bde8 commit 9b0a9fe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ and this project adheres to [Semantic Versioning].
[Keep a Changelog]: https://keepachangelog.com/en/1.0.0/
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html

## [6.2.0] - 2024-03-25
## [6.3.0] - 2024-03-25
- Adds support for Opportunities (https://dev.chartmogul.com/reference/opportunities)

## [6.2.0] - 2024-02-08
- Add support for customer website_url

## [6.1.1] - 2023-12-21
- Fix missing customer_uuid when creating a note from a customer

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 = '6.2.0';
private $apiVersion = '6.3.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/6.2.0/PHP-".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION, $mock->getUserAgent());
$this->assertEquals("chartmogul-php/6.3.0/PHP-".PHP_MAJOR_VERSION.".".PHP_MINOR_VERSION, $mock->getUserAgent());
}

public function testGetBasicAuthHeader()
Expand Down

0 comments on commit 9b0a9fe

Please sign in to comment.