From b60e4dcc006f1e663ac4ba3a6e68ebd3ccf3e12d Mon Sep 17 00:00:00 2001 From: Jesse Evers Date: Sun, 5 Mar 2023 19:27:11 -0700 Subject: [PATCH] Bump major version (5.7.0) --- composer.json | 2 +- lib/Configuration.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index c328de177..7031d3c42 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "jlevers/selling-partner-api", - "version": "5.6.0", + "version": "5.7.0", "description": "PHP client for Amazon's Selling Partner API", "keywords": [ "api", diff --git a/lib/Configuration.php b/lib/Configuration.php index 1fe02f355..834bf429e 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -56,7 +56,7 @@ class Configuration * * @var string */ - protected $userAgent = 'jlevers/selling-partner-api/5.6.0 (Language=PHP)'; + protected $userAgent = 'jlevers/selling-partner-api/5.7.0 (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.6.0' . PHP_EOL; + $report .= ' SDK Package Version: 5.7.0' . PHP_EOL; $report .= ' Temp Folder Path: ' . $tempFolderPath . PHP_EOL; return $report;