Skip to content

Commit 6176414

Browse files
python: release v0.6.0 (#191)
## [0.6.0] - 2026-03-05 ### Added - `SUCCEEDED` workflow task run status for forward-compatibility with upcoming status rename ### Changed - **Breaking:** Workflows `TaskIdentifier` type renamed to `TaskSlug` - **Breaking:** Workflows `task_identifier` parameter renamed to `task_slug` in `run_task()` and `start_task()` - **Breaking:** Workflows `list_task_runs()` now returns `list[TaskRunWithCursor]` (use `.task_run` to access the `TaskRun`) GitOrigin-RevId: a2dbdad6d11ef234a225f3b49d5a6c79dcd81887
1 parent 1ceb915 commit 6176414

4 files changed

Lines changed: 15 additions & 3 deletions

File tree

python/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.6.0] - 2026-03-05
4+
5+
### Added
6+
7+
- `SUCCEEDED` workflow task run status for forward-compatibility with upcoming status rename
8+
9+
### Changed
10+
11+
- **Breaking:** Workflows `TaskIdentifier` type renamed to `TaskSlug`
12+
- **Breaking:** Workflows `task_identifier` parameter renamed to `task_slug` in `run_task()` and `start_task()`
13+
- **Breaking:** Workflows `list_task_runs()` now returns `list[TaskRunWithCursor]` (use `.task_run` to access the `TaskRun`)
14+
315
## [0.5.0] - 2026-02-25
416

517
### Added

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "render_sdk"
7-
version = "0.5.0"
7+
version = "0.6.0"
88
description = "Python SDK for Render Workflows"
99
authors = [{ name = "Render", email = "support@render.com" }]
1010
readme = "README.md"

python/render_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def my_task(x: int) -> int:
3333
result = await task_run
3434
"""
3535

36-
__version__ = "0.5.0"
36+
__version__ = "0.6.0"
3737

3838
# Primary user-facing APIs
3939
from render_sdk.render import Render

python/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)