From 76aa0e9ddc22b93150de63cd4969c590d7848134 Mon Sep 17 00:00:00 2001 From: Jesse Evers Date: Wed, 21 Jul 2021 22:05:32 -0600 Subject: [PATCH] Bump version to 3.0.7 --- composer.json | 2 +- lib/Configuration.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 63e05beef..cdef7f6f8 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "jlevers/selling-partner-api", - "version": "3.0.6", + "version": "3.0.7", "description": "PHP client for Amazon's Selling Partner API", "keywords": [ "api", diff --git a/lib/Configuration.php b/lib/Configuration.php index a0cbfa686..157c649f0 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -62,7 +62,7 @@ class Configuration * * @var string */ - protected $userAgent = 'jlevers/selling-partner-api/3.0.6 (Language=PHP)'; + protected $userAgent = 'jlevers/selling-partner-api/3.0.7 (Language=PHP)'; /** * Debug switch (default set to false) @@ -299,7 +299,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: 3.0.6' . PHP_EOL; + $report .= ' SDK Package Version: 3.0.7' . PHP_EOL; $report .= ' Temp Folder Path: ' . $tempFolderPath . PHP_EOL; return $report;