diff --git a/CHANGELOG.md b/CHANGELOG.md index c702bc1b..a3e481aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,12 @@ 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] +## 1.6.1 - 2025-06-10 ### Fixed - Fixed JSON encoding of undefined notification entities - `paddle_billing.Notifications.Entities.UndefinedEntity` now implements `to_json` and can be encoded using `paddle_billing.Json.PayloadEncoder` +- Improved type hints throughout SDK ## 1.6.0 - 2025-02-10 diff --git a/paddle_billing/Client.py b/paddle_billing/Client.py index 513e161e..dd9b7154 100644 --- a/paddle_billing/Client.py +++ b/paddle_billing/Client.py @@ -196,7 +196,7 @@ def build_request_session(self) -> Session: "Authorization": f"Bearer {self.__api_key}", "Content-Type": "application/json", "Paddle-Version": str(self.use_api_version), - "User-Agent": "PaddleSDK/python 1.6.0", + "User-Agent": "PaddleSDK/python 1.6.1", } ) diff --git a/setup.py b/setup.py index 4e6472a8..601ad201 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( - version="1.6.0", + version="1.6.1", author="Paddle and contributors", author_email="team-dx@paddle.com", description="Paddle's Python SDK for Paddle Billing",