From d4d9112236e4f4385dbf6ab0e3b2396732531b9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Fern=C3=A1ndez=20Saborit?= Date: Wed, 13 Mar 2024 15:46:34 +0100 Subject: [PATCH] docs/release 1.0.1 (#47) --- CHANGELOG.md | 8 ++++++++ src/Client.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e4813c..202ff60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), Check our main [developer changelog](https://developer.paddle.com/?utm_source=dx&utm_medium=paddle-php-sdk) for information about changes to the Paddle Billing platform, the Paddle API, and other developer tools. +## [1.0.1] - 2024-03-13 + +### Added + +- `Address` and `Business` entities now include `customer_id` property, see [related changelog](https://developer.paddle.com/changelog/2024/address-business-webhooks-customer-id?utm_source=dx&utm_medium=paddle-php-sdk). +- Two new report types `product_prices` and `discounts`, see [related changelog](https://developer.paddle.com/changelog/2024/product-prices-discounts-reports?utm_source=dx&utm_medium=paddle-php-sdk). +- `Product` and `Prices` entities now support `created_at` and `updated_at` properties + ## [1.0.0] - 2024-02-20 ### Changed diff --git a/src/Client.php b/src/Client.php index e225880..b5d9a39 100644 --- a/src/Client.php +++ b/src/Client.php @@ -51,7 +51,7 @@ class Client { - private const SDK_VERSION = '1.0.0'; + private const SDK_VERSION = '1.0.1'; public readonly LoggerInterface $logger; public readonly Options $options;