From 3717ae94399de358c3216ee54b058c93a4070681 Mon Sep 17 00:00:00 2001 From: davidgrayston-paddle Date: Thu, 20 Jun 2024 10:50:59 +0100 Subject: [PATCH] fix: Release 0.1.2 (#13) --- CHANGELOG.md | 8 ++++++++ paddle_billing/Client.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21151ab..0e211e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,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-python-sdk) for information about changes to the Paddle Billing platform, the Paddle API, and other developer tools. +## 0.1.2 - 2024-06-20 + +### Fixed + +- Fixed [bug](https://github.com/PaddleHQ/paddle-python-sdk/pull/12) - corrected import in `NotificationSettingCollection`. + +--- + ## 0.1.1 - 2024-05-24 ### Fixed diff --git a/paddle_billing/Client.py b/paddle_billing/Client.py index d0655b3..e64cdef 100644 --- a/paddle_billing/Client.py +++ b/paddle_billing/Client.py @@ -187,7 +187,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 0.1.1', + 'User-Agent': 'PaddleSDK/python 0.1.2', }) # Configure retries diff --git a/setup.py b/setup.py index c9114d5..c6025dc 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( - version = '0.1.1', + version = '0.1.2', author = 'Paddle and contributors', author_email = 'team-dx@paddle.com',