Skip to content

Commit 5a59b13

Browse files
authored
Merge pull request #33 from scaleapi/release-please--branches--main--changes--next
release: 0.2.2
2 parents 95e6744 + 93bcd85 commit 5a59b13

File tree

6 files changed

+17
-9
lines changed

6 files changed

+17
-9
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.2.1"
2+
".": "0.2.2"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 34
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-782d59cf134b51ddd5058ae6e1630057093a6034b1d90663ab67836802b67cc6.yml
3-
openapi_spec_hash: 3356926852d5d095d572b4fdce242836
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-ed22476258be08ff765c68dcb29c08baf3e4783c98edac50d1e8003e9487db37.yml
3+
openapi_spec_hash: d4010bb4bf479073328ca00be01a7b96
44
config_hash: 7c1f6794a184ee175dd94f2f7c2b496b

CHANGELOG.md

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

3+
## 0.2.2 (2025-07-28)
4+
5+
Full Changelog: [v0.2.1...v0.2.2](https://github.com/scaleapi/agentex-python/compare/v0.2.1...v0.2.2)
6+
7+
### Features
8+
9+
* **api:** api update ([eb79533](https://github.com/scaleapi/agentex-python/commit/eb79533dd041b7fccccc6a75abedd0c87e9c55e5))
10+
311
## 0.2.1 (2025-07-27)
412

513
Full Changelog: [v0.2.0...v0.2.1](https://github.com/scaleapi/agentex-python/compare/v0.2.0...v0.2.1)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "agentex-sdk"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
description = "The official Python library for the agentex API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/agentex/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "agentex"
4-
__version__ = "0.2.1" # x-release-please-version
4+
__version__ = "0.2.2" # x-release-please-version

src/agentex/resources/tasks.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def stream_events(
206206
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
207207
) -> Stream[object]:
208208
"""
209-
Stream events for a task by its unique ID.
209+
Stream message updates for a task by its unique ID.
210210
211211
Args:
212212
extra_headers: Send extra headers
@@ -241,7 +241,7 @@ def stream_events_by_name(
241241
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
242242
) -> Stream[object]:
243243
"""
244-
Stream events for a task by its unique name.
244+
Stream message updates for a task by its unique name.
245245
246246
Args:
247247
extra_headers: Send extra headers
@@ -448,7 +448,7 @@ async def stream_events(
448448
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
449449
) -> AsyncStream[object]:
450450
"""
451-
Stream events for a task by its unique ID.
451+
Stream message updates for a task by its unique ID.
452452
453453
Args:
454454
extra_headers: Send extra headers
@@ -483,7 +483,7 @@ async def stream_events_by_name(
483483
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
484484
) -> AsyncStream[object]:
485485
"""
486-
Stream events for a task by its unique name.
486+
Stream message updates for a task by its unique name.
487487
488488
Args:
489489
extra_headers: Send extra headers

0 commit comments

Comments
 (0)