Skip to content

Commit 6dc9efe

Browse files
Merge pull request #354 from OneBusAway/release-please--branches--main--changes--next
release: 1.27.0
2 parents 08d92fb + c6d46a3 commit 6dc9efe

7 files changed

Lines changed: 15 additions & 7 deletions

File tree

.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.26.0"
2+
".": "1.27.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 30
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit/open-transit-4a35fd1e705bc2b75f44e2fd82144b95eeb56f329e4e05bbede7e6bc8adc479e.yml
3-
openapi_spec_hash: bc73be5518578c9ad8e878b82c540691
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit/open-transit-5f69b2b288261c7adfd9acb065dce897caf8782aff1687efe38ba52541ef7b96.yml
3+
openapi_spec_hash: b03acca245aef78353d3b7a6a4a62eb2
44
config_hash: c28ddf5b7754155603d9fd1c5fcaeeff

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.27.0 (2026-06-01)
4+
5+
Full Changelog: [v1.26.0...v1.27.0](https://github.com/OneBusAway/python-sdk/compare/v1.26.0...v1.27.0)
6+
7+
### Features
8+
9+
* **api:** api update ([cd23f70](https://github.com/OneBusAway/python-sdk/commit/cd23f7063b609144e7f984e2b5684cc1cd94d8f1))
10+
311
## 1.26.0 (2026-05-20)
412

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

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.26.0"
3+
version = "1.27.0"
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.26.0" # x-release-please-version
4+
__version__ = "1.27.0" # x-release-please-version

src/onebusaway/types/trips_for_location_list_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class TripsForLocationListResponseDataListStatus(BaseModel):
169169

170170

171171
class TripsForLocationListResponseDataList(BaseModel):
172-
schedule: TripsForLocationListResponseDataListSchedule
172+
schedule: Optional[TripsForLocationListResponseDataListSchedule] = None
173173

174174
status: TripsForLocationListResponseDataListStatus
175175
"""Trip-specific status for the arriving transit vehicle."""

src/onebusaway/types/trips_for_route_list_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class TripsForRouteListResponseDataListStatus(BaseModel):
169169

170170

171171
class TripsForRouteListResponseDataList(BaseModel):
172-
schedule: TripsForRouteListResponseDataListSchedule
172+
schedule: Optional[TripsForRouteListResponseDataListSchedule] = None
173173

174174
status: TripsForRouteListResponseDataListStatus
175175
"""Trip-specific status for the arriving transit vehicle."""

0 commit comments

Comments
 (0)