From c0a1f0df35a38c4ef131a9eb65d5ace9050682b0 Mon Sep 17 00:00:00 2001 From: Rhys Hall Date: Thu, 18 Aug 2022 11:08:57 +1000 Subject: [PATCH] Fix #15 --- CHANGELOG.md | 5 +++++ composer.json | 2 +- src/Collection.php | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e188814..727cb1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v0.3.4 +### Fixed issues +* Add pagination support for the Receipt resource. [Issue #15](https://github.com/rhysnhall/etsy-php-sdk/issues/15) +* Add pagination support for LedgerEntry and Transaction resources. + ## v0.3.3 ### Fixed issues * Corrected update URL for ListingProperty resource. [Issue #14](https://github.com/rhysnhall/etsy-php-sdk/issues/14) diff --git a/composer.json b/composer.json index 2870032..2964881 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "rhysnhall/etsy-php-sdk", - "version": "0.3.3", + "version": "0.3.4", "description": "PHP SDK for Etsy API v3.", "type": "library", "keywords": [ diff --git a/src/Collection.php b/src/Collection.php index cc80867..b5e3f2e 100644 --- a/src/Collection.php +++ b/src/Collection.php @@ -14,7 +14,7 @@ class Collection { const PAGINATION_SUPPORT = [ - "Shop", "Review", "Listing" + "Shop", "Review", "Listing", "Receipt", "Transaction", "LedgerEntry" ]; /**