Skip to content

Commit 6e31e1b

Browse files
Merge pull request #341 from OneBusAway/release-please--branches--main--changes--next
release: 1.22.0
2 parents 4e9eede + 7ab059a commit 6e31e1b

12 files changed

Lines changed: 27 additions & 19 deletions

.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.21.0"
2+
".": "1.22.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: 29
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-0c305d11543f8fc11bd55586c4dc4a724b10de1898cab0fe11364b4db6455752.yml
3-
openapi_spec_hash: 6d10c2ac411cd65f30d200f298577b32
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-30baad9d29b0909d180aae300750a0cd8425b52d7a60ba365b6aa4e5f8da6fab.yml
3+
openapi_spec_hash: 218466af34966d9b08728f107cb3b3b0
44
config_hash: 3871f5d21bb38ddd334ec04721dea64d

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.22.0 (2026-03-14)
4+
5+
Full Changelog: [v1.21.0...v1.22.0](https://github.com/OneBusAway/python-sdk/compare/v1.21.0...v1.22.0)
6+
7+
### Features
8+
9+
* **api:** api update ([9c5ed4a](https://github.com/OneBusAway/python-sdk/commit/9c5ed4a46e17562d8c1f2a80a2e44b4374c09aea))
10+
311
## 1.21.0 (2026-03-10)
412

513
Full Changelog: [v1.20.0...v1.21.0](https://github.com/OneBusAway/python-sdk/compare/v1.20.0...v1.21.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.21.0"
3+
version = "1.22.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.21.0" # x-release-please-version
4+
__version__ = "1.22.0" # x-release-please-version

src/onebusaway/types/arrival_and_departure_list_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121

2222
class ArrivalAndDepartureListResponseDataEntryArrivalsAndDepartureTripStatusLastKnownLocation(BaseModel):
23-
"""Last known location of the transit vehicle."""
23+
"""Last known location of the transit vehicle (optional)."""
2424

2525
lat: Optional[float] = None
2626
"""Latitude of the last known location of the transit vehicle."""
@@ -108,7 +108,7 @@ class ArrivalAndDepartureListResponseDataEntryArrivalsAndDepartureTripStatus(Bas
108108
last_known_location: Optional[
109109
ArrivalAndDepartureListResponseDataEntryArrivalsAndDepartureTripStatusLastKnownLocation
110110
] = FieldInfo(alias="lastKnownLocation", default=None)
111-
"""Last known location of the transit vehicle."""
111+
"""Last known location of the transit vehicle (optional)."""
112112

113113
last_known_orientation: Optional[float] = FieldInfo(alias="lastKnownOrientation", default=None)
114114
"""Last known orientation value received in real-time from the transit vehicle."""

src/onebusaway/types/arrival_and_departure_retrieve_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020

2121
class ArrivalAndDepartureRetrieveResponseDataEntryTripStatusLastKnownLocation(BaseModel):
22-
"""Last known location of the transit vehicle."""
22+
"""Last known location of the transit vehicle (optional)."""
2323

2424
lat: Optional[float] = None
2525
"""Latitude of the last known location of the transit vehicle."""
@@ -107,7 +107,7 @@ class ArrivalAndDepartureRetrieveResponseDataEntryTripStatus(BaseModel):
107107
last_known_location: Optional[ArrivalAndDepartureRetrieveResponseDataEntryTripStatusLastKnownLocation] = FieldInfo(
108108
alias="lastKnownLocation", default=None
109109
)
110-
"""Last known location of the transit vehicle."""
110+
"""Last known location of the transit vehicle (optional)."""
111111

112112
last_known_orientation: Optional[float] = FieldInfo(alias="lastKnownOrientation", default=None)
113113
"""Last known orientation value received in real-time from the transit vehicle."""

src/onebusaway/types/trip_detail_retrieve_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class TripDetailRetrieveResponseDataEntrySchedule(BaseModel):
4747

4848

4949
class TripDetailRetrieveResponseDataEntryStatusLastKnownLocation(BaseModel):
50-
"""Last known location of the transit vehicle."""
50+
"""Last known location of the transit vehicle (optional)."""
5151

5252
lat: Optional[float] = None
5353
"""Latitude of the last known location of the transit vehicle."""
@@ -133,7 +133,7 @@ class TripDetailRetrieveResponseDataEntryStatus(BaseModel):
133133
last_known_location: Optional[TripDetailRetrieveResponseDataEntryStatusLastKnownLocation] = FieldInfo(
134134
alias="lastKnownLocation", default=None
135135
)
136-
"""Last known location of the transit vehicle."""
136+
"""Last known location of the transit vehicle (optional)."""
137137

138138
last_known_orientation: Optional[float] = FieldInfo(alias="lastKnownOrientation", default=None)
139139
"""Last known orientation value received in real-time from the transit vehicle."""

src/onebusaway/types/trip_for_vehicle_retrieve_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class TripForVehicleRetrieveResponseDataEntrySchedule(BaseModel):
4747

4848

4949
class TripForVehicleRetrieveResponseDataEntryStatusLastKnownLocation(BaseModel):
50-
"""Last known location of the transit vehicle."""
50+
"""Last known location of the transit vehicle (optional)."""
5151

5252
lat: Optional[float] = None
5353
"""Latitude of the last known location of the transit vehicle."""
@@ -133,7 +133,7 @@ class TripForVehicleRetrieveResponseDataEntryStatus(BaseModel):
133133
last_known_location: Optional[TripForVehicleRetrieveResponseDataEntryStatusLastKnownLocation] = FieldInfo(
134134
alias="lastKnownLocation", default=None
135135
)
136-
"""Last known location of the transit vehicle."""
136+
"""Last known location of the transit vehicle (optional)."""
137137

138138
last_known_orientation: Optional[float] = FieldInfo(alias="lastKnownOrientation", default=None)
139139
"""Last known orientation value received in real-time from the transit vehicle."""

src/onebusaway/types/trips_for_location_list_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class TripsForLocationListResponseDataListSchedule(BaseModel):
4747

4848

4949
class TripsForLocationListResponseDataListStatusLastKnownLocation(BaseModel):
50-
"""Last known location of the transit vehicle."""
50+
"""Last known location of the transit vehicle (optional)."""
5151

5252
lat: Optional[float] = None
5353
"""Latitude of the last known location of the transit vehicle."""
@@ -133,7 +133,7 @@ class TripsForLocationListResponseDataListStatus(BaseModel):
133133
last_known_location: Optional[TripsForLocationListResponseDataListStatusLastKnownLocation] = FieldInfo(
134134
alias="lastKnownLocation", default=None
135135
)
136-
"""Last known location of the transit vehicle."""
136+
"""Last known location of the transit vehicle (optional)."""
137137

138138
last_known_orientation: Optional[float] = FieldInfo(alias="lastKnownOrientation", default=None)
139139
"""Last known orientation value received in real-time from the transit vehicle."""

0 commit comments

Comments
 (0)