Skip to content

Commit d5b5257

Browse files
Merge pull request #555 from OneBusAway/release-please--branches--main--changes--next
release: 1.0.0
2 parents 1cf2488 + b7fb8c6 commit d5b5257

23 files changed

+123
-138
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-
".": "0.1.0-alpha.208"
2+
".": "1.0.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: 29
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-6f08502508c8ad25235971add3124a1cde4f1c3ec705d5df455d750e0adcb90b.yml
3-
openapi_spec_hash: 84d082f35446d29c7db3cfcd259e9859
4-
config_hash: c7e112ec9853ad18fe92551ae0d97656
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/open-transit%2Fopen-transit-4fcbe9547537b22a2d68329e1d94e0c1a6f81b5af734ca213f7b95eef5da7adb.yml
3+
openapi_spec_hash: 417ea17b08e186b15b2986372592185e
4+
config_hash: 329054917178caa31271402afcf423da

CHANGELOG.md

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

3+
## 1.0.0 (2025-05-17)
4+
5+
Full Changelog: [v0.1.0-alpha.208...v1.0.0](https://github.com/OneBusAway/ruby-sdk/compare/v0.1.0-alpha.208...v1.0.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([bd2c9c4](https://github.com/OneBusAway/ruby-sdk/commit/bd2c9c4aab540d4e5a7eb8fa6b5103a10d26f426))
10+
11+
12+
### Chores
13+
14+
* configure new SDK language ([f00a06e](https://github.com/OneBusAway/ruby-sdk/commit/f00a06e0c296b6d168019b43a1e55f1375ee52b1))
15+
* trigger release ([5d40578](https://github.com/OneBusAway/ruby-sdk/commit/5d405785499dedaaa8aaba077563c254b6077fe6))
16+
* update SDK settings ([c0b720f](https://github.com/OneBusAway/ruby-sdk/commit/c0b720fa25631fb6456d19516f216f24e0ebde9e))
17+
318
## 0.1.0-alpha.208 (2025-05-15)
419

520
Full Changelog: [v0.1.0-alpha.207...v0.1.0-alpha.208](https://github.com/OneBusAway/ruby-sdk/compare/v0.1.0-alpha.207...v0.1.0-alpha.208)

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", "~> 0.1.0.pre.alpha.208"
20+
gem "onebusaway-sdk", "~> 1.0.0"
2121
```
2222

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

lib/onebusaway_sdk/models/references.rb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -528,6 +528,11 @@ class Stop < OnebusawaySDK::Internal::Type::BaseModel
528528
# @return [Float]
529529
required :lat, Float
530530

531+
# @!attribute location_type
532+
#
533+
# @return [Integer]
534+
required :location_type, Integer, api_name: :locationType
535+
531536
# @!attribute lon
532537
#
533538
# @return [Float]
@@ -563,27 +568,22 @@ class Stop < OnebusawaySDK::Internal::Type::BaseModel
563568
# @return [String, nil]
564569
optional :direction, String
565570

566-
# @!attribute location_type
567-
#
568-
# @return [Integer, nil]
569-
optional :location_type, Integer, api_name: :locationType
570-
571571
# @!attribute wheelchair_boarding
572572
#
573573
# @return [String, nil]
574574
optional :wheelchair_boarding, String, api_name: :wheelchairBoarding
575575

576-
# @!method initialize(id:, lat:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, location_type: nil, wheelchair_boarding: nil)
576+
# @!method initialize(id:, lat:, location_type:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, wheelchair_boarding: nil)
577577
# @param id [String]
578578
# @param lat [Float]
579+
# @param location_type [Integer]
579580
# @param lon [Float]
580581
# @param name [String]
581582
# @param parent [String]
582583
# @param route_ids [Array<String>]
583584
# @param static_route_ids [Array<String>]
584585
# @param code [String]
585586
# @param direction [String]
586-
# @param location_type [Integer]
587587
# @param wheelchair_boarding [String]
588588
end
589589

lib/onebusaway_sdk/models/schedule_for_route_retrieve_response.rb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,11 @@ class Stop < OnebusawaySDK::Internal::Type::BaseModel
7676
# @return [Float]
7777
required :lat, Float
7878

79+
# @!attribute location_type
80+
#
81+
# @return [Integer]
82+
required :location_type, Integer, api_name: :locationType
83+
7984
# @!attribute lon
8085
#
8186
# @return [Float]
@@ -113,27 +118,22 @@ class Stop < OnebusawaySDK::Internal::Type::BaseModel
113118
# @return [String, nil]
114119
optional :direction, String
115120

116-
# @!attribute location_type
117-
#
118-
# @return [Integer, nil]
119-
optional :location_type, Integer, api_name: :locationType
120-
121121
# @!attribute wheelchair_boarding
122122
#
123123
# @return [String, nil]
124124
optional :wheelchair_boarding, String, api_name: :wheelchairBoarding
125125

126-
# @!method initialize(id:, lat:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, location_type: nil, wheelchair_boarding: nil)
126+
# @!method initialize(id:, lat:, location_type:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, wheelchair_boarding: nil)
127127
# @param id [String]
128128
# @param lat [Float]
129+
# @param location_type [Integer]
129130
# @param lon [Float]
130131
# @param name [String]
131132
# @param parent [String]
132133
# @param route_ids [Array<String>]
133134
# @param static_route_ids [Array<String>]
134135
# @param code [String]
135136
# @param direction [String]
136-
# @param location_type [Integer]
137137
# @param wheelchair_boarding [String]
138138
end
139139

lib/onebusaway_sdk/models/search_for_stop_list_response.rb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ class List < OnebusawaySDK::Internal::Type::BaseModel
5151
# @return [Float]
5252
required :lat, Float
5353

54+
# @!attribute location_type
55+
#
56+
# @return [Integer]
57+
required :location_type, Integer, api_name: :locationType
58+
5459
# @!attribute lon
5560
#
5661
# @return [Float]
@@ -88,27 +93,22 @@ class List < OnebusawaySDK::Internal::Type::BaseModel
8893
# @return [String, nil]
8994
optional :direction, String
9095

91-
# @!attribute location_type
92-
#
93-
# @return [Integer, nil]
94-
optional :location_type, Integer, api_name: :locationType
95-
9696
# @!attribute wheelchair_boarding
9797
#
9898
# @return [String, nil]
9999
optional :wheelchair_boarding, String, api_name: :wheelchairBoarding
100100

101-
# @!method initialize(id:, lat:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, location_type: nil, wheelchair_boarding: nil)
101+
# @!method initialize(id:, lat:, location_type:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, wheelchair_boarding: nil)
102102
# @param id [String]
103103
# @param lat [Float]
104+
# @param location_type [Integer]
104105
# @param lon [Float]
105106
# @param name [String]
106107
# @param parent [String]
107108
# @param route_ids [Array<String>]
108109
# @param static_route_ids [Array<String>]
109110
# @param code [String]
110111
# @param direction [String]
111-
# @param location_type [Integer]
112112
# @param wheelchair_boarding [String]
113113
end
114114
end

lib/onebusaway_sdk/models/stop_retrieve_response.rb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ class Entry < OnebusawaySDK::Internal::Type::BaseModel
3939
# @return [Float]
4040
required :lat, Float
4141

42+
# @!attribute location_type
43+
#
44+
# @return [Integer]
45+
required :location_type, Integer, api_name: :locationType
46+
4247
# @!attribute lon
4348
#
4449
# @return [Float]
@@ -76,27 +81,22 @@ class Entry < OnebusawaySDK::Internal::Type::BaseModel
7681
# @return [String, nil]
7782
optional :direction, String
7883

79-
# @!attribute location_type
80-
#
81-
# @return [Integer, nil]
82-
optional :location_type, Integer, api_name: :locationType
83-
8484
# @!attribute wheelchair_boarding
8585
#
8686
# @return [String, nil]
8787
optional :wheelchair_boarding, String, api_name: :wheelchairBoarding
8888

89-
# @!method initialize(id:, lat:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, location_type: nil, wheelchair_boarding: nil)
89+
# @!method initialize(id:, lat:, location_type:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, wheelchair_boarding: nil)
9090
# @param id [String]
9191
# @param lat [Float]
92+
# @param location_type [Integer]
9293
# @param lon [Float]
9394
# @param name [String]
9495
# @param parent [String]
9596
# @param route_ids [Array<String>]
9697
# @param static_route_ids [Array<String>]
9798
# @param code [String]
9899
# @param direction [String]
99-
# @param location_type [Integer]
100100
# @param wheelchair_boarding [String]
101101
end
102102
end

lib/onebusaway_sdk/models/stops_for_agency_list_response.rb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ class List < OnebusawaySDK::Internal::Type::BaseModel
4242
# @return [Float]
4343
required :lat, Float
4444

45+
# @!attribute location_type
46+
#
47+
# @return [Integer]
48+
required :location_type, Integer, api_name: :locationType
49+
4550
# @!attribute lon
4651
#
4752
# @return [Float]
@@ -77,27 +82,22 @@ class List < OnebusawaySDK::Internal::Type::BaseModel
7782
# @return [String, nil]
7883
optional :direction, String
7984

80-
# @!attribute location_type
81-
#
82-
# @return [Integer, nil]
83-
optional :location_type, Integer, api_name: :locationType
84-
8585
# @!attribute wheelchair_boarding
8686
#
8787
# @return [String, nil]
8888
optional :wheelchair_boarding, String, api_name: :wheelchairBoarding
8989

90-
# @!method initialize(id:, lat:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, location_type: nil, wheelchair_boarding: nil)
90+
# @!method initialize(id:, lat:, location_type:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, wheelchair_boarding: nil)
9191
# @param id [String]
9292
# @param lat [Float]
93+
# @param location_type [Integer]
9394
# @param lon [Float]
9495
# @param name [String]
9596
# @param parent [String]
9697
# @param route_ids [Array<String>]
9798
# @param static_route_ids [Array<String>]
9899
# @param code [String]
99100
# @param direction [String]
100-
# @param location_type [Integer]
101101
# @param wheelchair_boarding [String]
102102
end
103103
end

lib/onebusaway_sdk/models/stops_for_location_list_response.rb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ class List < OnebusawaySDK::Internal::Type::BaseModel
5151
# @return [Float]
5252
required :lat, Float
5353

54+
# @!attribute location_type
55+
#
56+
# @return [Integer]
57+
required :location_type, Integer, api_name: :locationType
58+
5459
# @!attribute lon
5560
#
5661
# @return [Float]
@@ -88,27 +93,22 @@ class List < OnebusawaySDK::Internal::Type::BaseModel
8893
# @return [String, nil]
8994
optional :direction, String
9095

91-
# @!attribute location_type
92-
#
93-
# @return [Integer, nil]
94-
optional :location_type, Integer, api_name: :locationType
95-
9696
# @!attribute wheelchair_boarding
9797
#
9898
# @return [String, nil]
9999
optional :wheelchair_boarding, String, api_name: :wheelchairBoarding
100100

101-
# @!method initialize(id:, lat:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, location_type: nil, wheelchair_boarding: nil)
101+
# @!method initialize(id:, lat:, location_type:, lon:, name:, parent:, route_ids:, static_route_ids:, code: nil, direction: nil, wheelchair_boarding: nil)
102102
# @param id [String]
103103
# @param lat [Float]
104+
# @param location_type [Integer]
104105
# @param lon [Float]
105106
# @param name [String]
106107
# @param parent [String]
107108
# @param route_ids [Array<String>]
108109
# @param static_route_ids [Array<String>]
109110
# @param code [String]
110111
# @param direction [String]
111-
# @param location_type [Integer]
112112
# @param wheelchair_boarding [String]
113113
end
114114
end

0 commit comments

Comments
 (0)