From 6867bb965b3d660c65066db0e63232c233fbb537 Mon Sep 17 00:00:00 2001 From: Jesse Evers Date: Thu, 16 Sep 2021 11:58:45 -0700 Subject: [PATCH] Bump version to 3.1.5 --- composer.json | 2 +- lib/Configuration.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 2c75b5082..4c1083214 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "jlevers/selling-partner-api", - "version": "3.1.4", + "version": "3.1.5", "description": "PHP client for Amazon's Selling Partner API", "keywords": [ "api", diff --git a/lib/Configuration.php b/lib/Configuration.php index 645915d20..32652abc2 100644 --- a/lib/Configuration.php +++ b/lib/Configuration.php @@ -55,7 +55,7 @@ class Configuration * * @var string */ - protected $userAgent = 'jlevers/selling-partner-api/3.1.4 (Language=PHP)'; + protected $userAgent = 'jlevers/selling-partner-api/3.1.5 (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: 3.1.4' . PHP_EOL; + $report .= ' SDK Package Version: 3.1.5' . PHP_EOL; $report .= ' Temp Folder Path: ' . $tempFolderPath . PHP_EOL; return $report;