diff --git a/CHANGELOG.md b/CHANGELOG.md index d9d5268..e767a70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ 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-python-sdk) for information about changes to the Paddle Billing platform, the Paddle API, and other developer tools. -## [Unreleased] +## 0.3.0 - 2024-10-08 ### Added diff --git a/UPGRADING.md b/UPGRADING.md index f2181d2..99d003e 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -4,13 +4,13 @@ All breaking changes prior to v1 will be documented in this file to assist with ## v0.3.0 -### 1. `paddle_billing.Entities.Shared.AvailablePaymentMethods` has been replaced by `paddle_billing.Entities.Shared.PaymentMethodType`. +### 1. `AvailablePaymentMethods` has been replaced by `PaymentMethodType`. -`Transaction` `available_payment_methods` will now return a list of `PaymentMethodType`. +`Transaction` `available_payment_methods` will now return a list of `paddle_billing.Entities.Shared.PaymentMethodType`. -All usage of `AvailablePaymentMethods` will need to be replaced with `PaymentMethodType`. +All usage of `paddle_billing.Entities.Shared.AvailablePaymentMethods` will need to be replaced with `paddle_billing.Entities.Shared.PaymentMethodType`. -### 2. `paddle_billing.Entities.Shared.TimePeriod` has been aligned to API specification +### 2. `TimePeriod` has been aligned to API specification Existing shared `TimePeriod` was renamed to `Duration` (with properties `interval` and `frequency`), and new `TimePeriod` was added (with properties `starts_at` and `ends_at`). diff --git a/setup.py b/setup.py index e421286..1ca3e22 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( - version="0.2.2", + version="0.3.0", author="Paddle and contributors", author_email="team-dx@paddle.com", description="Paddle's Python SDK for Paddle Billing",