Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.0 - 2025-08-15

### Added

Expand Down
2 changes: 1 addition & 1 deletion paddle_billing/Client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 1.9.0",
"User-Agent": "PaddleSDK/python 1.10.0",
}
)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


setup(
version="1.9.0",
version="1.10.0",
author="Paddle and contributors",
author_email="team-dx@paddle.com",
description="Paddle's Python SDK for Paddle Billing",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pytest import mark
from urllib.parse import unquote

from build.lib.paddle_billing.Json import PayloadEncoder
from paddle_billing.Json import PayloadEncoder
from paddle_billing.Entities.Collections import ClientTokenCollection
from paddle_billing.Entities.ClientToken import ClientToken
from paddle_billing.Entities.ClientTokens import ClientTokenStatus
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pytest import mark
from urllib.parse import unquote

from build.lib.paddle_billing.Json import PayloadEncoder
from paddle_billing.Json import PayloadEncoder
from paddle_billing.Entities.Collections import DiscountCollection
from paddle_billing.Entities.DateTime import DateTime
from paddle_billing.Entities.Discount import Discount, DiscountMode
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pytest import raises

from build.lib.paddle_billing.Resources.Events.Operations import ListEvents
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tidying up imports (build.lib. isn't needed)

from paddle_billing.Resources.Events.Operations import ListEvents

from paddle_billing.Exceptions.SdkExceptions.InvalidArgumentException import InvalidArgumentException

Expand Down