Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.60"
".": "0.1.0-alpha.61"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.1.0-alpha.61 (2026-08-15)

Full Changelog: [v0.1.0-alpha.60...v0.1.0-alpha.61](https://github.com/OneBusAway/java-sdk/compare/v0.1.0-alpha.60...v0.1.0-alpha.61)

### Bug Fixes

* **docs:** link the javadoc badge so the version stays current after release ([1ec660b](https://github.com/OneBusAway/java-sdk/commit/1ec660bef1a6c2fca611d7f162f7cd1e711c4891))


### Chores

* **internal:** codegen related update ([2d80c6b](https://github.com/OneBusAway/java-sdk/commit/2d80c6bfe9eb0df7c24c0be11ef08764db711e6b))

## 0.1.0-alpha.60 (2026-08-04)

Full Changelog: [v0.1.0-alpha.59...v0.1.0-alpha.60](https://github.com/OneBusAway/java-sdk/compare/v0.1.0-alpha.59...v0.1.0-alpha.60)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<!-- x-release-please-start-version -->

[![Maven Central](https://img.shields.io/maven-central/v/org.onebusaway/onebusaway-sdk-java)](https://central.sonatype.com/artifact/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.60)
[![javadoc](https://javadoc.io/badge2/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.60/javadoc.svg)](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.60)
[![Maven Central](https://img.shields.io/maven-central/v/org.onebusaway/onebusaway-sdk-java)](https://central.sonatype.com/artifact/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.61)
[![javadoc](https://javadoc.io/badge2/org.onebusaway/onebusaway-sdk-java/javadoc.svg)](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.61)

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

Expand All @@ -15,7 +15,7 @@ It is generated with [Stainless](https://www.stainless.com/).

<!-- x-release-please-start-version -->

The REST API documentation can be found on [developer.onebusaway.org](https://developer.onebusaway.org). Javadocs are available on [javadoc.io](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.60).
The REST API documentation can be found on [developer.onebusaway.org](https://developer.onebusaway.org). Javadocs are available on [javadoc.io](https://javadoc.io/doc/org.onebusaway/onebusaway-sdk-java/0.1.0-alpha.61).

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

Expand All @@ -26,7 +26,7 @@ The REST API documentation can be found on [developer.onebusaway.org](https://de
### Gradle

```kotlin
implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.60")
implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.61")
```

### Maven
Expand All @@ -35,7 +35,7 @@ implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.60")
<dependency>
<groupId>org.onebusaway</groupId>
<artifactId>onebusaway-sdk-java</artifactId>
<version>0.1.0-alpha.60</version>
<version>0.1.0-alpha.61</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

allprojects {
group = "org.onebusaway"
version = "0.1.0-alpha.60" // x-release-please-version
version = "0.1.0-alpha.61" // x-release-please-version
}

subprojects {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -424,9 +424,9 @@ private constructor(
/**
* Sets [Builder.list] to an arbitrary JSON value.
*
* You should usually call [Builder.list] with a well-typed `List<List>` value instead.
* This method is primarily for setting the field to an undocumented or not yet
* supported value.
* You should usually call [Builder.list] with a well-typed
* `kotlin.collections.List<List>` value instead. This method is primarily for setting
* the field to an undocumented or not yet supported value.
*/
fun list(list: JsonField<kotlin.collections.List<List>>) = apply {
this.list = list.map { it.toMutableList() }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -421,9 +421,9 @@ private constructor(
/**
* Sets [Builder.list] to an arbitrary JSON value.
*
* You should usually call [Builder.list] with a well-typed `List<List>` value instead.
* This method is primarily for setting the field to an undocumented or not yet
* supported value.
* You should usually call [Builder.list] with a well-typed
* `kotlin.collections.List<List>` value instead. This method is primarily for setting
* the field to an undocumented or not yet supported value.
*/
fun list(list: JsonField<kotlin.collections.List<List>>) = apply {
this.list = list.map { it.toMutableList() }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -444,9 +444,9 @@ private constructor(
/**
* Sets [Builder.list] to an arbitrary JSON value.
*
* You should usually call [Builder.list] with a well-typed `List<List>` value instead.
* This method is primarily for setting the field to an undocumented or not yet
* supported value.
* You should usually call [Builder.list] with a well-typed
* `kotlin.collections.List<List>` value instead. This method is primarily for setting
* the field to an undocumented or not yet supported value.
*/
fun list(list: JsonField<kotlin.collections.List<List>>) = apply {
this.list = list.map { it.toMutableList() }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,9 +441,9 @@ private constructor(
/**
* Sets [Builder.list] to an arbitrary JSON value.
*
* You should usually call [Builder.list] with a well-typed `List<List>` value instead.
* This method is primarily for setting the field to an undocumented or not yet
* supported value.
* You should usually call [Builder.list] with a well-typed
* `kotlin.collections.List<List>` value instead. This method is primarily for setting
* the field to an undocumented or not yet supported value.
*/
fun list(list: JsonField<kotlin.collections.List<List>>) = apply {
this.list = list.map { it.toMutableList() }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,9 +441,9 @@ private constructor(
/**
* Sets [Builder.list] to an arbitrary JSON value.
*
* You should usually call [Builder.list] with a well-typed `List<List>` value instead.
* This method is primarily for setting the field to an undocumented or not yet
* supported value.
* You should usually call [Builder.list] with a well-typed
* `kotlin.collections.List<List>` value instead. This method is primarily for setting
* the field to an undocumented or not yet supported value.
*/
fun list(list: JsonField<kotlin.collections.List<List>>) = apply {
this.list = list.map { it.toMutableList() }
Expand Down Expand Up @@ -948,9 +948,9 @@ private constructor(
/**
* Sets [Builder.routeIds] to an arbitrary JSON value.
*
* You should usually call [Builder.routeIds] with a well-typed `List<String>` value
* instead. This method is primarily for setting the field to an undocumented or not
* yet supported value.
* You should usually call [Builder.routeIds] with a well-typed
* `kotlin.collections.List<String>` value instead. This method is primarily for
* setting the field to an undocumented or not yet supported value.
*/
fun routeIds(routeIds: JsonField<kotlin.collections.List<String>>) = apply {
this.routeIds = routeIds.map { it.toMutableList() }
Expand All @@ -974,9 +974,9 @@ private constructor(
/**
* Sets [Builder.staticRouteIds] to an arbitrary JSON value.
*
* You should usually call [Builder.staticRouteIds] with a well-typed `List<String>`
* value instead. This method is primarily for setting the field to an undocumented
* or not yet supported value.
* You should usually call [Builder.staticRouteIds] with a well-typed
* `kotlin.collections.List<String>` value instead. This method is primarily for
* setting the field to an undocumented or not yet supported value.
*/
fun staticRouteIds(staticRouteIds: JsonField<kotlin.collections.List<String>>) =
apply {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -948,9 +948,9 @@ private constructor(
/**
* Sets [Builder.routeIds] to an arbitrary JSON value.
*
* You should usually call [Builder.routeIds] with a well-typed `List<String>` value
* instead. This method is primarily for setting the field to an undocumented or not
* yet supported value.
* You should usually call [Builder.routeIds] with a well-typed
* `kotlin.collections.List<String>` value instead. This method is primarily for
* setting the field to an undocumented or not yet supported value.
*/
fun routeIds(routeIds: JsonField<kotlin.collections.List<String>>) = apply {
this.routeIds = routeIds.map { it.toMutableList() }
Expand All @@ -974,9 +974,9 @@ private constructor(
/**
* Sets [Builder.staticRouteIds] to an arbitrary JSON value.
*
* You should usually call [Builder.staticRouteIds] with a well-typed `List<String>`
* value instead. This method is primarily for setting the field to an undocumented
* or not yet supported value.
* You should usually call [Builder.staticRouteIds] with a well-typed
* `kotlin.collections.List<String>` value instead. This method is primarily for
* setting the field to an undocumented or not yet supported value.
*/
fun staticRouteIds(staticRouteIds: JsonField<kotlin.collections.List<String>>) =
apply {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -442,9 +442,9 @@ private constructor(
/**
* Sets [Builder.list] to an arbitrary JSON value.
*
* You should usually call [Builder.list] with a well-typed `List<List>` value instead.
* This method is primarily for setting the field to an undocumented or not yet
* supported value.
* You should usually call [Builder.list] with a well-typed
* `kotlin.collections.List<List>` value instead. This method is primarily for setting
* the field to an undocumented or not yet supported value.
*/
fun list(list: JsonField<kotlin.collections.List<List>>) = apply {
this.list = list.map { it.toMutableList() }
Expand Down Expand Up @@ -948,9 +948,9 @@ private constructor(
/**
* Sets [Builder.routeIds] to an arbitrary JSON value.
*
* You should usually call [Builder.routeIds] with a well-typed `List<String>` value
* instead. This method is primarily for setting the field to an undocumented or not
* yet supported value.
* You should usually call [Builder.routeIds] with a well-typed
* `kotlin.collections.List<String>` value instead. This method is primarily for
* setting the field to an undocumented or not yet supported value.
*/
fun routeIds(routeIds: JsonField<kotlin.collections.List<String>>) = apply {
this.routeIds = routeIds.map { it.toMutableList() }
Expand All @@ -974,9 +974,9 @@ private constructor(
/**
* Sets [Builder.staticRouteIds] to an arbitrary JSON value.
*
* You should usually call [Builder.staticRouteIds] with a well-typed `List<String>`
* value instead. This method is primarily for setting the field to an undocumented
* or not yet supported value.
* You should usually call [Builder.staticRouteIds] with a well-typed
* `kotlin.collections.List<String>` value instead. This method is primarily for
* setting the field to an undocumented or not yet supported value.
*/
fun staticRouteIds(staticRouteIds: JsonField<kotlin.collections.List<String>>) =
apply {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -446,9 +446,9 @@ private constructor(
/**
* Sets [Builder.list] to an arbitrary JSON value.
*
* You should usually call [Builder.list] with a well-typed `List<List>` value instead.
* This method is primarily for setting the field to an undocumented or not yet
* supported value.
* You should usually call [Builder.list] with a well-typed
* `kotlin.collections.List<List>` value instead. This method is primarily for setting
* the field to an undocumented or not yet supported value.
*/
fun list(list: JsonField<kotlin.collections.List<List>>) = apply {
this.list = list.map { it.toMutableList() }
Expand Down Expand Up @@ -839,9 +839,9 @@ private constructor(
/**
* Sets [Builder.situationIds] to an arbitrary JSON value.
*
* You should usually call [Builder.situationIds] with a well-typed `List<String>`
* value instead. This method is primarily for setting the field to an undocumented
* or not yet supported value.
* You should usually call [Builder.situationIds] with a well-typed
* `kotlin.collections.List<String>` value instead. This method is primarily for
* setting the field to an undocumented or not yet supported value.
*/
fun situationIds(situationIds: JsonField<kotlin.collections.List<String>>) = apply {
this.situationIds = situationIds.map { it.toMutableList() }
Expand Down Expand Up @@ -1153,8 +1153,8 @@ private constructor(
* Sets [Builder.stopTimes] to an arbitrary JSON value.
*
* You should usually call [Builder.stopTimes] with a well-typed
* `List<StopTime>` value instead. This method is primarily for setting the
* field to an undocumented or not yet supported value.
* `kotlin.collections.List<StopTime>` value instead. This method is primarily
* for setting the field to an undocumented or not yet supported value.
*/
fun stopTimes(stopTimes: JsonField<kotlin.collections.List<StopTime>>) = apply {
this.stopTimes = stopTimes.map { it.toMutableList() }
Expand Down Expand Up @@ -2875,8 +2875,8 @@ private constructor(
* Sets [Builder.situationIds] to an arbitrary JSON value.
*
* You should usually call [Builder.situationIds] with a well-typed
* `List<String>` value instead. This method is primarily for setting the field
* to an undocumented or not yet supported value.
* `kotlin.collections.List<String>` value instead. This method is primarily for
* setting the field to an undocumented or not yet supported value.
*/
fun situationIds(situationIds: JsonField<kotlin.collections.List<String>>) =
apply {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -421,9 +421,9 @@ private constructor(
/**
* Sets [Builder.list] to an arbitrary JSON value.
*
* You should usually call [Builder.list] with a well-typed `List<List>` value instead.
* This method is primarily for setting the field to an undocumented or not yet
* supported value.
* You should usually call [Builder.list] with a well-typed
* `kotlin.collections.List<List>` value instead. This method is primarily for setting
* the field to an undocumented or not yet supported value.
*/
fun list(list: JsonField<kotlin.collections.List<List>>) = apply {
this.list = list.map { it.toMutableList() }
Expand Down Expand Up @@ -798,9 +798,9 @@ private constructor(
/**
* Sets [Builder.situationIds] to an arbitrary JSON value.
*
* You should usually call [Builder.situationIds] with a well-typed `List<String>`
* value instead. This method is primarily for setting the field to an undocumented
* or not yet supported value.
* You should usually call [Builder.situationIds] with a well-typed
* `kotlin.collections.List<String>` value instead. This method is primarily for
* setting the field to an undocumented or not yet supported value.
*/
fun situationIds(situationIds: JsonField<kotlin.collections.List<String>>) = apply {
this.situationIds = situationIds.map { it.toMutableList() }
Expand Down Expand Up @@ -1112,8 +1112,8 @@ private constructor(
* Sets [Builder.stopTimes] to an arbitrary JSON value.
*
* You should usually call [Builder.stopTimes] with a well-typed
* `List<StopTime>` value instead. This method is primarily for setting the
* field to an undocumented or not yet supported value.
* `kotlin.collections.List<StopTime>` value instead. This method is primarily
* for setting the field to an undocumented or not yet supported value.
*/
fun stopTimes(stopTimes: JsonField<kotlin.collections.List<StopTime>>) = apply {
this.stopTimes = stopTimes.map { it.toMutableList() }
Expand Down Expand Up @@ -2834,8 +2834,8 @@ private constructor(
* Sets [Builder.situationIds] to an arbitrary JSON value.
*
* You should usually call [Builder.situationIds] with a well-typed
* `List<String>` value instead. This method is primarily for setting the field
* to an undocumented or not yet supported value.
* `kotlin.collections.List<String>` value instead. This method is primarily for
* setting the field to an undocumented or not yet supported value.
*/
fun situationIds(situationIds: JsonField<kotlin.collections.List<String>>) =
apply {
Expand Down
Loading
Loading