From 547667af5663af1b5a826c5171ced41a5e1271db Mon Sep 17 00:00:00 2001 From: Jesse Evers Date: Mon, 23 Jan 2023 15:26:36 -0500 Subject: [PATCH] Bump version to 5.5.4 --- composer.json | 2 +- lib/Configuration.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index b225d8fc5..8d73ace30 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "jlevers/selling-partner-api", - "version": "5.5.3", + "version": "5.5.4", "description": "PHP client for Amazon's Selling Partner API", "keywords": [ "api", diff --git a/lib/Configuration.php b/lib/Configuration.php index 825b0485e..ca83eaab1 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -56,7 +56,7 @@ class Configuration * * @var string */ - protected $userAgent = 'jlevers/selling-partner-api/5.5.3 (Language=PHP)'; + protected $userAgent = 'jlevers/selling-partner-api/5.5.4 (Language=PHP)'; /** * Debug switch (default set to false) @@ -429,7 +429,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: 5.5.3' . PHP_EOL; + $report .= ' SDK Package Version: 5.5.4' . PHP_EOL; $report .= ' Temp Folder Path: ' . $tempFolderPath . PHP_EOL; return $report;