From ca2b5e9311340c449bf9ee3427c49d496812529a Mon Sep 17 00:00:00 2001 From: Jesse Evers Date: Wed, 22 Dec 2021 12:13:20 -0500 Subject: [PATCH] Bump version to 4.2.4 --- composer.json | 2 +- lib/Configuration.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 05c8e2541..098004605 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "jlevers/selling-partner-api", - "version": "4.2.3", + "version": "4.2.4", "description": "PHP client for Amazon's Selling Partner API", "keywords": [ "api", diff --git a/lib/Configuration.php b/lib/Configuration.php index b57401c5e..1953a8071 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -55,7 +55,7 @@ class Configuration * * @var string */ - protected $userAgent = 'jlevers/selling-partner-api/4.2.3 (Language=PHP)'; + protected $userAgent = 'jlevers/selling-partner-api/4.2.4 (Language=PHP)'; /** * Debug switch (default set to false) @@ -411,7 +411,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: 4.2.3' . PHP_EOL; + $report .= ' SDK Package Version: 4.2.4' . PHP_EOL; $report .= ' Temp Folder Path: ' . $tempFolderPath . PHP_EOL; return $report;