Skip to content

Commit 93ae3c9

Browse files
Merge pull request #322 from OneBusAway/release-please--branches--main--changes--next
release: 1.17.4
2 parents 56c9236 + 5b4318e commit 93ae3c9

File tree

5 files changed

+17
-9
lines changed

5 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-
".": "1.17.3"
2+
".": "1.17.4"
33
}

CHANGELOG.md

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

3+
## 1.17.4 (2025-09-23)
4+
5+
Full Changelog: [v1.17.3...v1.17.4](https://github.com/OneBusAway/python-sdk/compare/v1.17.3...v1.17.4)
6+
7+
### Chores
8+
9+
* improve example values ([7a14d29](https://github.com/OneBusAway/python-sdk/commit/7a14d29ad55a4bf845d71ea5aee8ae00a4ed3cdc))
10+
311
## 1.17.3 (2025-09-20)
412

513
Full Changelog: [v1.17.2...v1.17.3](https://github.com/OneBusAway/python-sdk/compare/v1.17.2...v1.17.3)

pyproject.toml

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

src/onebusaway/_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__ = "onebusaway"
4-
__version__ = "1.17.3" # x-release-please-version
4+
__version__ = "1.17.4" # x-release-please-version

tests/api_resources/test_routes_for_agency.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ class TestRoutesForAgency:
2020
@parametrize
2121
def test_method_list(self, client: OnebusawaySDK) -> None:
2222
routes_for_agency = client.routes_for_agency.list(
23-
"agencyID",
23+
"40",
2424
)
2525
assert_matches_type(RoutesForAgencyListResponse, routes_for_agency, path=["response"])
2626

2727
@parametrize
2828
def test_raw_response_list(self, client: OnebusawaySDK) -> None:
2929
response = client.routes_for_agency.with_raw_response.list(
30-
"agencyID",
30+
"40",
3131
)
3232

3333
assert response.is_closed is True
@@ -38,7 +38,7 @@ def test_raw_response_list(self, client: OnebusawaySDK) -> None:
3838
@parametrize
3939
def test_streaming_response_list(self, client: OnebusawaySDK) -> None:
4040
with client.routes_for_agency.with_streaming_response.list(
41-
"agencyID",
41+
"40",
4242
) as response:
4343
assert not response.is_closed
4444
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
@@ -64,14 +64,14 @@ class TestAsyncRoutesForAgency:
6464
@parametrize
6565
async def test_method_list(self, async_client: AsyncOnebusawaySDK) -> None:
6666
routes_for_agency = await async_client.routes_for_agency.list(
67-
"agencyID",
67+
"40",
6868
)
6969
assert_matches_type(RoutesForAgencyListResponse, routes_for_agency, path=["response"])
7070

7171
@parametrize
7272
async def test_raw_response_list(self, async_client: AsyncOnebusawaySDK) -> None:
7373
response = await async_client.routes_for_agency.with_raw_response.list(
74-
"agencyID",
74+
"40",
7575
)
7676

7777
assert response.is_closed is True
@@ -82,7 +82,7 @@ async def test_raw_response_list(self, async_client: AsyncOnebusawaySDK) -> None
8282
@parametrize
8383
async def test_streaming_response_list(self, async_client: AsyncOnebusawaySDK) -> None:
8484
async with async_client.routes_for_agency.with_streaming_response.list(
85-
"agencyID",
85+
"40",
8686
) as response:
8787
assert not response.is_closed
8888
assert response.http_request.headers.get("X-Stainless-Lang") == "python"

0 commit comments

Comments
 (0)