From 4e624cb84fbc78f89d2c0d4804af79035a0073af Mon Sep 17 00:00:00 2001 From: davidgrayston-paddle Date: Mon, 11 Nov 2024 14:01:33 +0000 Subject: [PATCH] docs(release): 1.0.0 (#64) * docs: Update version * docs: Update changelog for 1.0.0 release --- CHANGELOG.md | 2 +- UPGRADING.md | 2 +- paddle_billing/Client.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc67fcc..69b9d0b 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] +## 1.0.0 - 2024-11-11 ### Changed diff --git a/UPGRADING.md b/UPGRADING.md index a7b9c57..75de22d 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -2,7 +2,7 @@ All breaking changes prior to v1 will be documented in this file to assist with upgrading. -## Unreleased +## v1.0.0 ### 1. Unused `get_parameters()` method was removed from request operation classes diff --git a/paddle_billing/Client.py b/paddle_billing/Client.py index 9da5fcb..2f49743 100644 --- a/paddle_billing/Client.py +++ b/paddle_billing/Client.py @@ -200,7 +200,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.3.2", + "User-Agent": "PaddleSDK/python 1.0.0", } ) diff --git a/setup.py b/setup.py index 5c3b94a..51d9d95 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( - version="0.3.2", + version="1.0.0", author="Paddle and contributors", author_email="team-dx@paddle.com", description="Paddle's Python SDK for Paddle Billing",