diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 34dc535b..6d78745c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.8.2" + ".": "0.9.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index a7042876..b62e4e62 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 35 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-43921054bad3c6969dc10f5899faa5924f3c029ccffb55965bbb6e7c9a0f22c6.yml -openapi_spec_hash: 17b74748a86bc159767dbb66ba46f54d +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sgp%2Fagentex-sdk-c9b5ca9e03141b62fa981944af1c880cd4562f0b697ed5f110c0e0e754f455ba.yml +openapi_spec_hash: 9ed347fceac28248d2a0acb49c4eb356 config_hash: 32eb65911c08ac84d117cecdf2759869 diff --git a/CHANGELOG.md b/CHANGELOG.md index a87d87fc..a5a192ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.9.0 (2026-01-07) + +Full Changelog: [v0.8.2...v0.9.0](https://github.com/scaleapi/scale-agentex-python/compare/v0.8.2...v0.9.0) + +### Features + +* **api:** api update ([f7728f9](https://github.com/scaleapi/scale-agentex-python/commit/f7728f9752a5b5e5ec3dca91a38d7d092f8a2fc7)) + ## 0.8.2 (2026-01-02) Full Changelog: [v0.8.1...v0.8.2](https://github.com/scaleapi/scale-agentex-python/compare/v0.8.1...v0.8.2) diff --git a/pyproject.toml b/pyproject.toml index b9629dbc..9f265e09 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agentex-sdk" -version = "0.8.2" +version = "0.9.0" description = "The official Python library for the agentex API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/agentex/_version.py b/src/agentex/_version.py index e31c5cf7..93c4fa19 100644 --- a/src/agentex/_version.py +++ b/src/agentex/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "agentex" -__version__ = "0.8.2" # x-release-please-version +__version__ = "0.9.0" # x-release-please-version diff --git a/tests/api_resources/test_spans.py b/tests/api_resources/test_spans.py index 8bfdb952..dd4162ba 100644 --- a/tests/api_resources/test_spans.py +++ b/tests/api_resources/test_spans.py @@ -185,10 +185,10 @@ def test_method_list(self, client: Agentex) -> None: @parametrize def test_method_list_with_all_params(self, client: Agentex) -> None: span = client.spans.list( - limit=0, + limit=1, order_by="order_by", order_direction="order_direction", - page_number=0, + page_number=1, trace_id="trace_id", ) assert_matches_type(SpanListResponse, span, path=["response"]) @@ -387,10 +387,10 @@ async def test_method_list(self, async_client: AsyncAgentex) -> None: @parametrize async def test_method_list_with_all_params(self, async_client: AsyncAgentex) -> None: span = await async_client.spans.list( - limit=0, + limit=1, order_by="order_by", order_direction="order_direction", - page_number=0, + page_number=1, trace_id="trace_id", ) assert_matches_type(SpanListResponse, span, path=["response"])