onebusaway-sdk 1.9.2 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 04e27ffeca2a9dc0ac2a054534ecfb1a5804fc7fd1d0be8fa12dfc268fbc5635
4
- data.tar.gz: aada30a1cff27e3060e9dc70fcdf7cb9692936f3fc111d0dbfed4d6f892191a0
3
+ metadata.gz: ce8ae195267620bf3f3d4756b7346d986db0bb509f47124e645a235cada8eb3f
4
+ data.tar.gz: 83ff71ef490e0a752fea5bb5cba7e516cb87100ee534188e7d14982705ad3fef
5
5
  SHA512:
6
- metadata.gz: 23eee3f7b3738a8cd9ab9d6c3dbc9f7c39537ee7dd3857917b6db67de9abfb4c9ca9beb09b19a2be50f85034b9ca6f1189dff135c7238869e4f3b4f25742d990
7
- data.tar.gz: 9ec8f8f30d5e618327790a54b650346ba28ddadc7723090d0808ff357db629c46e580ddf67fc101d6aa130edfaa355323426569b28348cecaa9853472b38d22d
6
+ metadata.gz: 7144a1dc9c7622b82e748f4f471ef91a3d531acc9104be51a5198936f490bf6922aef6b0cc9977398735962f7b2492afa97985ffafa70e5233b2059a36057411
7
+ data.tar.gz: a319a2c8aa9b66e60e61685cd8e77720eaa3b67d37285d9a6004449a838b32e471c2fb2a048cbd10bbf81547927b49e1e4dacf83b88ea1965122c8a9c4e93839
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
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
+
3
11
  ## 1.9.2 (2026-06-30)
4
12
 
5
13
  Full Changelog: [v1.9.1...v1.9.2](https://github.com/OneBusAway/ruby-sdk/compare/v1.9.1...v1.9.2)
data/README.md CHANGED
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
  <!-- x-release-please-start-version -->
18
18
 
19
19
  ```ruby
20
- gem "onebusaway-sdk", "~> 1.9.2"
20
+ gem "onebusaway-sdk", "~> 1.10.0"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -40,7 +40,7 @@ module OnebusawaySDK
40
40
 
41
41
  # @!attribute include_trip
42
42
  # Whether to include full trip elements in the references section. Defaults to
43
- # false.
43
+ # true.
44
44
  #
45
45
  # @return [Boolean, nil]
46
46
  optional :include_trip, OnebusawaySDK::Internal::Type::Boolean
@@ -65,7 +65,7 @@ module OnebusawaySDK
65
65
  #
66
66
  # @param include_schedule [Boolean] Whether to include full schedule elements in the tripDetails section. Defaults t
67
67
  #
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
69
69
  #
70
70
  # @param time [Integer] Specific time for the query. Defaults to the current time.
71
71
  #
@@ -20,7 +20,7 @@ module OnebusawaySDK
20
20
  #
21
21
  # @param include_schedule [Boolean] Whether to include full schedule elements in the tripDetails section. Defaults t
22
22
  #
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
24
24
  #
25
25
  # @param time [Integer] Specific time for the query. Defaults to the current time.
26
26
  #
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module OnebusawaySDK
4
- VERSION = "1.9.2"
4
+ VERSION = "1.10.0"
5
5
  end
@@ -39,7 +39,7 @@ module OnebusawaySDK
39
39
  attr_writer :include_schedule
40
40
 
41
41
  # Whether to include full trip elements in the references section. Defaults to
42
- # false.
42
+ # true.
43
43
  sig { returns(T.nilable(T::Boolean)) }
44
44
  attr_reader :include_trip
45
45
 
@@ -78,7 +78,7 @@ module OnebusawaySDK
78
78
  # to false.
79
79
  include_schedule: nil,
80
80
  # Whether to include full trip elements in the references section. Defaults to
81
- # false.
81
+ # true.
82
82
  include_trip: nil,
83
83
  # Specific time for the query. Defaults to the current time.
84
84
  time: nil,
@@ -29,7 +29,7 @@ module OnebusawaySDK
29
29
  # to false.
30
30
  include_schedule: nil,
31
31
  # Whether to include full trip elements in the references section. Defaults to
32
- # false.
32
+ # true.
33
33
  include_trip: nil,
34
34
  # Specific time for the query. Defaults to the current time.
35
35
  time: nil,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: onebusaway-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.2
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Onebusaway SDK
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-06-30 00:00:00.000000000 Z
11
+ date: 2026-07-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi