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

Commit

Permalink
9.0.1 release
Browse files Browse the repository at this point in the history
close #76
  • Loading branch information
David T. Sadler committed Mar 6, 2017
1 parent 81bf070 commit 7495ccd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 9.0.1 - 2017-03-06

### Fixes

* Correct mapping between offer_Id and offerId for the UpdateOffer operation in the Inventory service.

## 9.0.0 - 2017-03-01

### Breaking changes
Expand Down
2 changes: 1 addition & 1 deletion src/Inventory/Services/InventoryService.php
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ class InventoryService extends \DTS\eBaySDK\Inventory\Services\InventoryBaseServ
],
'UpdateOffer' => [
'method' => 'PUT',
'resource' => 'offer/{offer_Id}',
'resource' => 'offer/{offerId}',
'responseClass' => '\DTS\eBaySDK\Inventory\Types\UpdateOfferRestResponse',
'params' => [
'offerId' => [
Expand Down
2 changes: 1 addition & 1 deletion src/Sdk.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*/
class Sdk
{
const VERSION = '9.0.0';
const VERSION = '9.0.1';

/**
* @var bool Controls if the SDK should enforce strict types
Expand Down

0 comments on commit 7495ccd

Please sign in to comment.