Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(internal): version bump #3

Merged
merged 1 commit into from
Jun 25, 2024
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.0.1-alpha.0"
".": "0.1.0-alpha.1"
}
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.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)

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

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

```kotlin
implementation("org.openlayer:openlayer-java:0.0.1-alpha.0")
implementation("org.openlayer:openlayer-java:0.1.0-alpha.1")
```

#### Maven
Expand All @@ -36,7 +36,7 @@ implementation("org.openlayer:openlayer-java:0.0.1-alpha.0")
<dependency>
<groupId>org.openlayer</groupId>
<artifactId>openlayer-java</artifactId>
<version>0.0.1-alpha.0</version>
<version>0.1.0-alpha.1</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.openlayer"
version = "0.0.1-alpha.0" // x-release-please-version
version = "0.1.0-alpha.1" // x-release-please-version
}

nexusPublishing {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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")
Expand Down Expand Up @@ -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")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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")
Expand Down Expand Up @@ -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")
Expand Down