Skip to content
This repository was archived by the owner on Jun 13, 2021. It is now read-only.

Commit 8d309d9

Browse files
author
David T. Sadler
committed
Merge branch 'release-13.0.1'
2 parents 828c48e + b96bb5e commit 8d309d9

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## 13.0.1 - 2017-08-23
4+
5+
### Fixes
6+
7+
* Wrong HTTP method was been used for the processReturnRequest operation.
8+
39
## 13.0.0 - 2017-06-23
410

511
### Features

src/PostOrder/Services/PostOrderService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ class PostOrderService extends \DTS\eBaySDK\PostOrder\Services\PostOrderBaseServ
631631
]
632632
],
633633
'ProcessReturnRequest' => [
634-
'method' => 'MET',
634+
'method' => 'POST',
635635
'resource' => 'RES',
636636
'responseClass' => '\DTS\eBaySDK\PostOrder\Types\ProcessReturnRequestRestResponse',
637637
'params' => [

src/Sdk.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*/
3131
class Sdk
3232
{
33-
const VERSION = '13.0.0';
33+
const VERSION = '13.0.1';
3434

3535
/**
3636
* @var bool Controls if the SDK should enforce strict types

0 commit comments

Comments
 (0)