From 9b0a9fe27ddb629754f038003571cd1e06b7fe4f Mon Sep 17 00:00:00 2001 From: Kamil Pavlicko Date: Tue, 26 Mar 2024 17:01:16 +0800 Subject: [PATCH] Release v6.3.0 (#126) --- CHANGELOG.md | 5 ++++- src/Http/Client.php | 2 +- tests/Unit/Http/ClientTest.php | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e07b810..e436aad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/Http/Client.php b/src/Http/Client.php index 3a59a6c..9e67d5a 100644 --- a/src/Http/Client.php +++ b/src/Http/Client.php @@ -30,7 +30,7 @@ class Client implements ClientInterface /** * @var string */ - private $apiVersion = '6.2.0'; + private $apiVersion = '6.3.0'; /** * @var string diff --git a/tests/Unit/Http/ClientTest.php b/tests/Unit/Http/ClientTest.php index a57247a..551c2fb 100644 --- a/tests/Unit/Http/ClientTest.php +++ b/tests/Unit/Http/ClientTest.php @@ -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()