From 48e2e3074d3e716f1fa61ddfac32d78023b942a5 Mon Sep 17 00:00:00 2001 From: stainless-bot Date: Tue, 25 Jun 2024 18:53:31 +0000 Subject: [PATCH] chore(internal): version bump --- .release-please-manifest.json | 2 +- README.md | 6 +++--- build.gradle.kts | 2 +- .../models/CommitTestResultListResponseTest.kt | 13 ++++++++++--- .../InferencePipelineTestResultListResponseTest.kt | 13 ++++++++++--- 5 files changed, 25 insertions(+), 11 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c4762802..ba6c3483 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.1-alpha.0" + ".": "0.1.0-alpha.1" } \ No newline at end of file diff --git a/README.md b/README.md index 1d8c59cb..c027e070 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ -[![Maven Central](https://img.shields.io/maven-central/v/org.openlayer/openlayer-java)](https://central.sonatype.com/artifact/org.openlayer/openlayer-java/0.0.1-alpha.0) +[![Maven Central](https://img.shields.io/maven-central/v/org.openlayer/openlayer-java)](https://central.sonatype.com/artifact/org.openlayer/openlayer-java/0.1.0-alpha.1) @@ -27,7 +27,7 @@ The REST API documentation can be foundĀ [on openlayer.com](https://openlayer.co ```kotlin -implementation("org.openlayer:openlayer-java:0.0.1-alpha.0") +implementation("org.openlayer:openlayer-java:0.1.0-alpha.1") ``` #### Maven @@ -36,7 +36,7 @@ implementation("org.openlayer:openlayer-java:0.0.1-alpha.0") org.openlayer openlayer-java - 0.0.1-alpha.0 + 0.1.0-alpha.1 ``` diff --git a/build.gradle.kts b/build.gradle.kts index bbd28963..1aa0b26e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { allprojects { group = "org.openlayer" - version = "0.0.1-alpha.0" // x-release-please-version + version = "0.1.0-alpha.1" // x-release-please-version } nexusPublishing { diff --git a/openlayer-java-core/src/test/kotlin/org/openlayer/models/CommitTestResultListResponseTest.kt b/openlayer-java-core/src/test/kotlin/org/openlayer/models/CommitTestResultListResponseTest.kt index fa2e03b0..9a27418c 100644 --- a/openlayer-java-core/src/test/kotlin/org/openlayer/models/CommitTestResultListResponseTest.kt +++ b/openlayer-java-core/src/test/kotlin/org/openlayer/models/CommitTestResultListResponseTest.kt @@ -5,7 +5,6 @@ package org.openlayer.models import java.time.OffsetDateTime import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test -import org.openlayer.core.JsonNull import org.openlayer.core.JsonValue class CommitTestResultListResponseTest { @@ -43,7 +42,11 @@ class CommitTestResultListResponseTest { .dateArchived(OffsetDateTime.parse("2024-03-22T11:31:01.185Z")) .dateCreated(OffsetDateTime.parse("2024-03-22T11:31:01.185Z")) .dateUpdated(OffsetDateTime.parse("2024-03-22T11:31:01.185Z")) - .description(JsonNull.of()) + .description( + JsonValue.from( + "This test checks for duplicate rows in the dataset." + ) + ) .name("No duplicate rows") .number(123L) .originProjectVersionId("3fa85f64-5717-4562-b3fc-2c963f66afa6") @@ -114,7 +117,11 @@ class CommitTestResultListResponseTest { .dateArchived(OffsetDateTime.parse("2024-03-22T11:31:01.185Z")) .dateCreated(OffsetDateTime.parse("2024-03-22T11:31:01.185Z")) .dateUpdated(OffsetDateTime.parse("2024-03-22T11:31:01.185Z")) - .description(JsonNull.of()) + .description( + JsonValue.from( + "This test checks for duplicate rows in the dataset." + ) + ) .name("No duplicate rows") .number(123L) .originProjectVersionId("3fa85f64-5717-4562-b3fc-2c963f66afa6") diff --git a/openlayer-java-core/src/test/kotlin/org/openlayer/models/InferencePipelineTestResultListResponseTest.kt b/openlayer-java-core/src/test/kotlin/org/openlayer/models/InferencePipelineTestResultListResponseTest.kt index e65cc603..e372b2f4 100644 --- a/openlayer-java-core/src/test/kotlin/org/openlayer/models/InferencePipelineTestResultListResponseTest.kt +++ b/openlayer-java-core/src/test/kotlin/org/openlayer/models/InferencePipelineTestResultListResponseTest.kt @@ -5,7 +5,6 @@ package org.openlayer.models import java.time.OffsetDateTime import org.assertj.core.api.Assertions.assertThat import org.junit.jupiter.api.Test -import org.openlayer.core.JsonNull import org.openlayer.core.JsonValue class InferencePipelineTestResultListResponseTest { @@ -43,7 +42,11 @@ class InferencePipelineTestResultListResponseTest { .dateArchived(OffsetDateTime.parse("2024-03-22T11:31:01.185Z")) .dateCreated(OffsetDateTime.parse("2024-03-22T11:31:01.185Z")) .dateUpdated(OffsetDateTime.parse("2024-03-22T11:31:01.185Z")) - .description(JsonNull.of()) + .description( + JsonValue.from( + "This test checks for duplicate rows in the dataset." + ) + ) .name("No duplicate rows") .number(123L) .originProjectVersionId("3fa85f64-5717-4562-b3fc-2c963f66afa6") @@ -117,7 +120,11 @@ class InferencePipelineTestResultListResponseTest { .dateArchived(OffsetDateTime.parse("2024-03-22T11:31:01.185Z")) .dateCreated(OffsetDateTime.parse("2024-03-22T11:31:01.185Z")) .dateUpdated(OffsetDateTime.parse("2024-03-22T11:31:01.185Z")) - .description(JsonNull.of()) + .description( + JsonValue.from( + "This test checks for duplicate rows in the dataset." + ) + ) .name("No duplicate rows") .number(123L) .originProjectVersionId("3fa85f64-5717-4562-b3fc-2c963f66afa6")