diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 813bc7f..6fa95f6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.17.3" + ".": "1.17.4" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cb5396..02d1323 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.17.4 (2025-09-23) + +Full Changelog: [v1.17.3...v1.17.4](https://github.com/OneBusAway/python-sdk/compare/v1.17.3...v1.17.4) + +### Chores + +* improve example values ([7a14d29](https://github.com/OneBusAway/python-sdk/commit/7a14d29ad55a4bf845d71ea5aee8ae00a4ed3cdc)) + ## 1.17.3 (2025-09-20) Full Changelog: [v1.17.2...v1.17.3](https://github.com/OneBusAway/python-sdk/compare/v1.17.2...v1.17.3) diff --git a/pyproject.toml b/pyproject.toml index cee6b62..f27cef3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "onebusaway" -version = "1.17.3" +version = "1.17.4" description = "The official Python library for the onebusaway-sdk API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/onebusaway/_version.py b/src/onebusaway/_version.py index 0443ae4..2e461f2 100644 --- a/src/onebusaway/_version.py +++ b/src/onebusaway/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "onebusaway" -__version__ = "1.17.3" # x-release-please-version +__version__ = "1.17.4" # x-release-please-version diff --git a/tests/api_resources/test_routes_for_agency.py b/tests/api_resources/test_routes_for_agency.py index 9b2182e..793d7bc 100644 --- a/tests/api_resources/test_routes_for_agency.py +++ b/tests/api_resources/test_routes_for_agency.py @@ -20,14 +20,14 @@ class TestRoutesForAgency: @parametrize def test_method_list(self, client: OnebusawaySDK) -> None: routes_for_agency = client.routes_for_agency.list( - "agencyID", + "40", ) assert_matches_type(RoutesForAgencyListResponse, routes_for_agency, path=["response"]) @parametrize def test_raw_response_list(self, client: OnebusawaySDK) -> None: response = client.routes_for_agency.with_raw_response.list( - "agencyID", + "40", ) assert response.is_closed is True @@ -38,7 +38,7 @@ def test_raw_response_list(self, client: OnebusawaySDK) -> None: @parametrize def test_streaming_response_list(self, client: OnebusawaySDK) -> None: with client.routes_for_agency.with_streaming_response.list( - "agencyID", + "40", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python" @@ -64,14 +64,14 @@ class TestAsyncRoutesForAgency: @parametrize async def test_method_list(self, async_client: AsyncOnebusawaySDK) -> None: routes_for_agency = await async_client.routes_for_agency.list( - "agencyID", + "40", ) assert_matches_type(RoutesForAgencyListResponse, routes_for_agency, path=["response"]) @parametrize async def test_raw_response_list(self, async_client: AsyncOnebusawaySDK) -> None: response = await async_client.routes_for_agency.with_raw_response.list( - "agencyID", + "40", ) assert response.is_closed is True @@ -82,7 +82,7 @@ async def test_raw_response_list(self, async_client: AsyncOnebusawaySDK) -> None @parametrize async def test_streaming_response_list(self, async_client: AsyncOnebusawaySDK) -> None: async with async_client.routes_for_agency.with_streaming_response.list( - "agencyID", + "40", ) as response: assert not response.is_closed assert response.http_request.headers.get("X-Stainless-Lang") == "python"