From a50ff18b9384ff502de078ea41a7c60c6e47602f Mon Sep 17 00:00:00 2001 From: Jesse Evers Date: Sat, 24 Apr 2021 15:37:04 -0400 Subject: [PATCH] Bump version to 2.0.8 --- composer.json | 2 +- lib/Configuration.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 9c569e7e7..d1000ffae 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "jlevers/selling-partner-api", - "version": "2.0.7", + "version": "2.0.8", "description": "PHP client for Amazon's Selling Partner API", "keywords": [ "api", diff --git a/lib/Configuration.php b/lib/Configuration.php index 987188694..61a030c5c 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -62,7 +62,7 @@ class Configuration * * @var string */ - protected $userAgent = 'SellingPartnerAPI/2.0.7 (Language=PHP)'; + protected $userAgent = 'SellingPartnerAPI/2.0.8 (Language=PHP)'; /** * Debug switch (default set to false) @@ -383,7 +383,7 @@ public static function toDebugReport() $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: 2.0.7' . PHP_EOL; + $report .= ' SDK Package Version: 2.0.8' . PHP_EOL; $report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL; return $report;