Skip to content

Commit d3ac044

Browse files
committed
Prepare 1.0.3 release
1 parent 5fc5b2e commit d3ac044

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 1.0.3/ 2025-28-10 ###
2+
* Added a Docker-based test harness (`scripts/test-in-docker.sh`) that mirrors our GitHub Actions matrix locally, including optional Smart CDN parity checks via the official Transloadit CLI.
3+
* Introduced an opt-in end-to-end image resize test (`tests/test_e2e_upload.py`) plus supporting `chameleon.jpg` fixture; enable by setting `PYTHON_SDK_E2E=1` along with `TRANSLOADIT_KEY`/`TRANSLOADIT_SECRET`.
4+
* Updated CI to run the E2E upload on Python 3.12 with guarded secrets and to skip coverage for that targeted job.
5+
* Documented the new workflows and ensured the Transloadit CLI integration replaces the legacy TypeScript helper.
6+
17
### 1.0.2/ 2024-03-12 ###
28
* Add support for Python 3.13
39

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pytransloadit"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
description = "A Python Integration for Transloadit's file uploading and encoding service."
55
authors = ["Ifedapo Olarewaju"]
66
maintainers = ["Florian Kuenzig", "Arnaud Limbourg"]

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.2"},
22+
request_headers={"Transloadit-Client": "python-sdk:1.0.3"},
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.2"
1+
__version__ = "1.0.3"

0 commit comments

Comments
 (0)