Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.17.3"
".": "1.17.4"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/onebusaway/_version.py
Original file line number Diff line number Diff line change
@@ -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
12 changes: 6 additions & 6 deletions tests/api_resources/test_routes_for_agency.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand All @@ -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
Expand All @@ -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"
Expand Down