diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 380b6f9..3188ced 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.24" + ".": "0.1.0-alpha.25" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index fc0e543..8829d4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.1.0-alpha.25 (2024-11-12) + +Full Changelog: [v0.1.0-alpha.24...v0.1.0-alpha.25](https://github.com/OneBusAway/kotlin-sdk/compare/v0.1.0-alpha.24...v0.1.0-alpha.25) + +### Chores + +* rebuild project due to codegen change ([#68](https://github.com/OneBusAway/kotlin-sdk/issues/68)) ([502939b](https://github.com/OneBusAway/kotlin-sdk/commit/502939b34afc0fe6c8337de8657fbc9f3608fcec)) + ## 0.1.0-alpha.24 (2024-11-07) Full Changelog: [v0.1.0-alpha.23...v0.1.0-alpha.24](https://github.com/OneBusAway/kotlin-sdk/compare/v0.1.0-alpha.23...v0.1.0-alpha.24) diff --git a/README.md b/README.md index c7c3526..4506d29 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ The REST API documentation can be foundĀ on [developer.onebusaway.org](https://d ```kotlin -implementation("org.onebusaway:onebusaway-sdk-kotlin:0.1.0-alpha.24") +implementation("org.onebusaway:onebusaway-sdk-kotlin:0.1.0-alpha.25") ``` #### Maven @@ -30,7 +30,7 @@ implementation("org.onebusaway:onebusaway-sdk-kotlin:0.1.0-alpha.24") org.onebusaway onebusaway-sdk-kotlin - 0.1.0-alpha.24 + 0.1.0-alpha.25 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 7a481c0..dd5192a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { allprojects { group = "org.onebusaway" - version = "0.1.0-alpha.24" // x-release-please-version + version = "0.1.0-alpha.25" // x-release-please-version } nexusPublishing { diff --git a/onebusaway-sdk-kotlin-client-okhttp/build.gradle.kts b/onebusaway-sdk-kotlin-client-okhttp/build.gradle.kts index 7736aa0..6e8e9f6 100644 --- a/onebusaway-sdk-kotlin-client-okhttp/build.gradle.kts +++ b/onebusaway-sdk-kotlin-client-okhttp/build.gradle.kts @@ -11,5 +11,4 @@ dependencies { testImplementation(kotlin("test")) testImplementation("org.assertj:assertj-core:3.25.3") - testImplementation("org.slf4j:slf4j-simple:2.0.12") } diff --git a/onebusaway-sdk-kotlin-core/build.gradle.kts b/onebusaway-sdk-kotlin-core/build.gradle.kts index b5e62bc..b5947ba 100644 --- a/onebusaway-sdk-kotlin-core/build.gradle.kts +++ b/onebusaway-sdk-kotlin-core/build.gradle.kts @@ -19,8 +19,6 @@ dependencies { testImplementation(project(":onebusaway-sdk-kotlin-client-okhttp")) testImplementation("com.github.tomakehurst:wiremock-jre8:2.35.2") testImplementation("org.assertj:assertj-core:3.25.3") - testImplementation("org.assertj:assertj-guava:3.25.3") - testImplementation("org.slf4j:slf4j-simple:2.0.12") testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3") testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.3") } diff --git a/onebusaway-sdk-kotlin-core/src/test/kotlin/org/onebusaway/services/ErrorHandlingTest.kt b/onebusaway-sdk-kotlin-core/src/test/kotlin/org/onebusaway/services/ErrorHandlingTest.kt index ea34b83..728df53 100644 --- a/onebusaway-sdk-kotlin-core/src/test/kotlin/org/onebusaway/services/ErrorHandlingTest.kt +++ b/onebusaway-sdk-kotlin-core/src/test/kotlin/org/onebusaway/services/ErrorHandlingTest.kt @@ -14,7 +14,6 @@ import com.github.tomakehurst.wiremock.junit5.WireMockTest import org.assertj.core.api.Assertions.assertThat import org.assertj.core.api.Assertions.assertThatThrownBy import org.assertj.core.api.InstanceOfAssertFactories -import org.assertj.guava.api.Assertions.assertThat import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.Test import org.onebusaway.client.OnebusawaySdkClient