Skip to content

Commit d7debe6

Browse files
committed
Prepare 1.0.1 release
1 parent e54b9ca commit d7debe6

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 1.0.1/ 2024-28-11 ###
2+
* Added SDK support for signed Smart CDN URLs (see https://transloadit.com/docs/topics/signature-authentication/#smart-cdn).
3+
This is shipped within the new client#get_signed_smart_cdn_url() method.
4+
* Version updates for dependencies.
5+
16
### 1.0.0/ 2024-16-07 ###
27

38
* **Breaking Change**: Python versions prior to 3.9 have been deleted as they are no longer supported.

tests/test_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_get(self, mock):
1919
mock.get(
2020
url,
2121
text='{"ok": "it works"}',
22-
request_headers={"Transloadit-Client": "python-sdk:1.0.0"},
22+
request_headers={"Transloadit-Client": "python-sdk:1.0.1"},
2323
)
2424

2525
response = self.request.get("/foo")

transloadit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.0"
1+
__version__ = "1.0.1"

0 commit comments

Comments
 (0)