Skip to content
Merged
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.2"
".": "0.1.0-alpha.3"
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.1.0-alpha.3 (2024-10-03)

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

### Chores

* **internal:** codegen related update ([#7](https://github.com/OneBusAway/java-sdk/issues/7)) ([ca7150a](https://github.com/OneBusAway/java-sdk/commit/ca7150a121355cdf5fc7c22ae283c9e680a5de61))
* **internal:** codegen related update ([#9](https://github.com/OneBusAway/java-sdk/issues/9)) ([dfc2794](https://github.com/OneBusAway/java-sdk/commit/dfc2794f244796f1041b91c6bc01ef81c7b7a8be))

## 0.1.0-alpha.2 (2024-09-30)

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

<!-- 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.2)
[![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.3)

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

Expand All @@ -27,7 +27,7 @@ The REST API documentation can be found on [developer.onebusaway.org](https://d
<!-- x-release-please-start-version -->

```kotlin
implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.2")
implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.3")
```

#### Maven
Expand All @@ -36,7 +36,7 @@ implementation("org.onebusaway:onebusaway-sdk-java:0.1.0-alpha.2")
<dependency>
<groupId>org.onebusaway</groupId>
<artifactId>onebusaway-sdk-java</artifactId>
<version>0.1.0-alpha.2</version>
<version>0.1.0-alpha.3</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 @@ -4,7 +4,7 @@ plugins {

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


Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ private constructor(

private var validated: Boolean = false

private var hashCode: Int = 0

fun code(): Long = code.getRequired("code")

fun currentTime(): Long = currentTime.getRequired("currentTime")
Expand Down Expand Up @@ -75,38 +73,6 @@ private constructor(

fun toBuilder() = Builder().from(this)

override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}

return other is AgenciesWithCoverageListResponse &&
this.code == other.code &&
this.currentTime == other.currentTime &&
this.text == other.text &&
this.version == other.version &&
this.data == other.data &&
this.additionalProperties == other.additionalProperties
}

override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
code,
currentTime,
text,
version,
data,
additionalProperties,
)
}
return hashCode
}

override fun toString() =
"AgenciesWithCoverageListResponse{code=$code, currentTime=$currentTime, text=$text, version=$version, data=$data, additionalProperties=$additionalProperties}"

companion object {

@JvmStatic fun builder() = Builder()
Expand Down Expand Up @@ -199,8 +165,6 @@ private constructor(

private var validated: Boolean = false

private var hashCode: Int = 0

fun limitExceeded(): Boolean = limitExceeded.getRequired("limitExceeded")

fun list(): kotlin.collections.List<List> = list.getRequired("list")
Expand Down Expand Up @@ -228,34 +192,6 @@ private constructor(

fun toBuilder() = Builder().from(this)

override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}

return other is Data &&
this.limitExceeded == other.limitExceeded &&
this.list == other.list &&
this.references == other.references &&
this.additionalProperties == other.additionalProperties
}

override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
limitExceeded,
list,
references,
additionalProperties,
)
}
return hashCode
}

override fun toString() =
"Data{limitExceeded=$limitExceeded, list=$list, references=$references, additionalProperties=$additionalProperties}"

companion object {

@JvmStatic fun builder() = Builder()
Expand Down Expand Up @@ -335,8 +271,6 @@ private constructor(

private var validated: Boolean = false

private var hashCode: Int = 0

fun agencyId(): String = agencyId.getRequired("agencyId")

fun lat(): Double = lat.getRequired("lat")
Expand Down Expand Up @@ -374,38 +308,6 @@ private constructor(

fun toBuilder() = Builder().from(this)

override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}

return other is List &&
this.agencyId == other.agencyId &&
this.lat == other.lat &&
this.latSpan == other.latSpan &&
this.lon == other.lon &&
this.lonSpan == other.lonSpan &&
this.additionalProperties == other.additionalProperties
}

override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
agencyId,
lat,
latSpan,
lon,
lonSpan,
additionalProperties,
)
}
return hashCode
}

override fun toString() =
"List{agencyId=$agencyId, lat=$lat, latSpan=$latSpan, lon=$lon, lonSpan=$lonSpan, additionalProperties=$additionalProperties}"

companion object {

@JvmStatic fun builder() = Builder()
Expand Down Expand Up @@ -485,6 +387,104 @@ private constructor(
additionalProperties.toUnmodifiable(),
)
}

override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}

return other is List &&
this.agencyId == other.agencyId &&
this.lat == other.lat &&
this.latSpan == other.latSpan &&
this.lon == other.lon &&
this.lonSpan == other.lonSpan &&
this.additionalProperties == other.additionalProperties
}

private var hashCode: Int = 0

override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
agencyId,
lat,
latSpan,
lon,
lonSpan,
additionalProperties,
)
}
return hashCode
}

override fun toString() =
"List{agencyId=$agencyId, lat=$lat, latSpan=$latSpan, lon=$lon, lonSpan=$lonSpan, additionalProperties=$additionalProperties}"
}

override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}

return other is Data &&
this.limitExceeded == other.limitExceeded &&
this.list == other.list &&
this.references == other.references &&
this.additionalProperties == other.additionalProperties
}

private var hashCode: Int = 0

override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
limitExceeded,
list,
references,
additionalProperties,
)
}
return hashCode
}

override fun toString() =
"Data{limitExceeded=$limitExceeded, list=$list, references=$references, additionalProperties=$additionalProperties}"
}

override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}

return other is AgenciesWithCoverageListResponse &&
this.code == other.code &&
this.currentTime == other.currentTime &&
this.text == other.text &&
this.version == other.version &&
this.data == other.data &&
this.additionalProperties == other.additionalProperties
}

private var hashCode: Int = 0

override fun hashCode(): Int {
if (hashCode == 0) {
hashCode =
Objects.hash(
code,
currentTime,
text,
version,
data,
additionalProperties,
)
}
return hashCode
}

override fun toString() =
"AgenciesWithCoverageListResponse{code=$code, currentTime=$currentTime, text=$text, version=$version, data=$data, additionalProperties=$additionalProperties}"
}
Loading