From c758628ef140ae0c9c020e21a8fb8cb8465d09cd Mon Sep 17 00:00:00 2001 From: Jesse Evers Date: Mon, 13 Mar 2023 23:45:42 -0600 Subject: [PATCH] Patch version (1.0.3) --- composer.json | 2 +- lib/Configuration.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 6325dbd..45d320a 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "highsidelabs/amazon-business-api", - "version": "1.0.2", + "version": "1.0.3", "description": "PHP client for Amazon's Business API", "keywords": [ "api", diff --git a/lib/Configuration.php b/lib/Configuration.php index 5a338fc..a970543 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -56,7 +56,7 @@ class Configuration * * @var string */ - protected $userAgent = 'highsidelabs/amazon-business-api/1.0.2 (Language=PHP)'; + protected $userAgent = 'highsidelabs/amazon-business-api/1.0.3 (Language=PHP)'; /** * Debug switch (default set to false) @@ -428,7 +428,7 @@ public static function toDebugReport(?string $tempFolderPath = null) $report .= ' OS: ' . php_uname() . PHP_EOL; $report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL; $report .= ' The version of the OpenAPI document: 2020-11-01' . PHP_EOL; - $report .= ' SDK Package Version: 1.0.2' . PHP_EOL; + $report .= ' SDK Package Version: 1.0.3' . PHP_EOL; $report .= ' Temp Folder Path: ' . $tempFolderPath . PHP_EOL; return $report;