Skip to content

Commit 00087ad

Browse files
Merge pull request #623 from OneBusAway/release-please--branches--main--changes--next
release: 1.10.0
2 parents 6dfc01c + 2276c8a commit 00087ad

10 files changed

Lines changed: 21 additions & 13 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.9.2"
2+
".": "1.10.0"
33
}

.stats.yml

Lines changed: 3 additions & 3 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-49611a380a238e29ad714c2f6d66a35ada42e3931d2aad2839afd1f13b585de1.yml
3-
openapi_spec_hash: b03acca245aef78353d3b7a6a4a62eb2
4-
config_hash: ff7ff57d4c7f9c3f7a4f9bae39aa00e3
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit/open-transit-e8511c379642404d73fd2ff068f81d845054108160ccd58343021bbd0b444a37.yml
3+
openapi_spec_hash: b8824d511c16ed314dc7cee996f4fd97
4+
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.10.0 (2026-07-09)
4+
5+
Full Changelog: [v1.9.2...v1.10.0](https://github.com/OneBusAway/ruby-sdk/compare/v1.9.2...v1.10.0)
6+
7+
### Features
8+
9+
* **api:** api update ([fa9ea74](https://github.com/OneBusAway/ruby-sdk/commit/fa9ea7441f856cbd02576178dc2ea3845fa6f457))
10+
311
## 1.9.2 (2026-06-30)
412

513
Full Changelog: [v1.9.1...v1.9.2](https://github.com/OneBusAway/ruby-sdk/compare/v1.9.1...v1.9.2)

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GIT
1111
PATH
1212
remote: .
1313
specs:
14-
onebusaway-sdk (1.9.2)
14+
onebusaway-sdk (1.10.0)
1515
cgi
1616
connection_pool
1717

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
1717
<!-- x-release-please-start-version -->
1818

1919
```ruby
20-
gem "onebusaway-sdk", "~> 1.9.2"
20+
gem "onebusaway-sdk", "~> 1.10.0"
2121
```
2222

2323
<!-- x-release-please-end -->

lib/onebusaway_sdk/models/trips_for_location_list_params.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class TripsForLocationListParams < OnebusawaySDK::Internal::Type::BaseModel
4040

4141
# @!attribute include_trip
4242
# Whether to include full trip elements in the references section. Defaults to
43-
# false.
43+
# true.
4444
#
4545
# @return [Boolean, nil]
4646
optional :include_trip, OnebusawaySDK::Internal::Type::Boolean
@@ -65,7 +65,7 @@ class TripsForLocationListParams < OnebusawaySDK::Internal::Type::BaseModel
6565
#
6666
# @param include_schedule [Boolean] Whether to include full schedule elements in the tripDetails section. Defaults t
6767
#
68-
# @param include_trip [Boolean] Whether to include full trip elements in the references section. Defaults to fal
68+
# @param include_trip [Boolean] Whether to include full trip elements in the references section. Defaults to tru
6969
#
7070
# @param time [Integer] Specific time for the query. Defaults to the current time.
7171
#

lib/onebusaway_sdk/resources/trips_for_location.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class TripsForLocation
2020
#
2121
# @param include_schedule [Boolean] Whether to include full schedule elements in the tripDetails section. Defaults t
2222
#
23-
# @param include_trip [Boolean] Whether to include full trip elements in the references section. Defaults to fal
23+
# @param include_trip [Boolean] Whether to include full trip elements in the references section. Defaults to tru
2424
#
2525
# @param time [Integer] Specific time for the query. Defaults to the current time.
2626
#

lib/onebusaway_sdk/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module OnebusawaySDK
4-
VERSION = "1.9.2"
4+
VERSION = "1.10.0"
55
end

rbi/onebusaway_sdk/models/trips_for_location_list_params.rbi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module OnebusawaySDK
3939
attr_writer :include_schedule
4040

4141
# Whether to include full trip elements in the references section. Defaults to
42-
# false.
42+
# true.
4343
sig { returns(T.nilable(T::Boolean)) }
4444
attr_reader :include_trip
4545

@@ -78,7 +78,7 @@ module OnebusawaySDK
7878
# to false.
7979
include_schedule: nil,
8080
# Whether to include full trip elements in the references section. Defaults to
81-
# false.
81+
# true.
8282
include_trip: nil,
8383
# Specific time for the query. Defaults to the current time.
8484
time: nil,

rbi/onebusaway_sdk/resources/trips_for_location.rbi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module OnebusawaySDK
2929
# to false.
3030
include_schedule: nil,
3131
# Whether to include full trip elements in the references section. Defaults to
32-
# false.
32+
# true.
3333
include_trip: nil,
3434
# Specific time for the query. Defaults to the current time.
3535
time: nil,

0 commit comments

Comments
 (0)