From ab699d93f6e8090b74dfb8058cf00f3ed9408e79 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 31 Jan 2026 04:41:32 +0000 Subject: [PATCH 1/2] chore(internal): allow passing args to `./scripts/test` --- scripts/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build b/scripts/build index f4063482..16a2b00d 100755 --- a/scripts/build +++ b/scripts/build @@ -5,4 +5,4 @@ set -e cd "$(dirname "$0")/.." echo "==> Building classes" -./gradlew build testClasses -x test +./gradlew build testClasses "$@" -x test From 841b1547129fd7d7b291d376c15a7ad8014e0834 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Sat, 31 Jan 2026 04:41:47 +0000 Subject: [PATCH 2/2] release: 0.4.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 10 +++++----- build.gradle.kts | 2 +- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3e2bf498..980ea052 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.1" + ".": "0.4.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b2c80c8..768b21f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.4.2 (2026-01-31) + +Full Changelog: [v0.4.1...v0.4.2](https://github.com/openlayer-ai/openlayer-java/compare/v0.4.1...v0.4.2) + +### Chores + +* **internal:** allow passing args to `./scripts/test` ([ab699d9](https://github.com/openlayer-ai/openlayer-java/commit/ab699d93f6e8090b74dfb8058cf00f3ed9408e79)) + ## 0.4.1 (2026-01-29) Full Changelog: [v0.4.0...v0.4.1](https://github.com/openlayer-ai/openlayer-java/compare/v0.4.0...v0.4.1) diff --git a/README.md b/README.md index 8ae62208..fee99e78 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.openlayer.api/openlayer-java)](https://central.sonatype.com/artifact/com.openlayer.api/openlayer-java/0.4.1) -[![javadoc](https://javadoc.io/badge2/com.openlayer.api/openlayer-java/0.4.1/javadoc.svg)](https://javadoc.io/doc/com.openlayer.api/openlayer-java/0.4.1) +[![Maven Central](https://img.shields.io/maven-central/v/com.openlayer.api/openlayer-java)](https://central.sonatype.com/artifact/com.openlayer.api/openlayer-java/0.4.2) +[![javadoc](https://javadoc.io/badge2/com.openlayer.api/openlayer-java/0.4.2/javadoc.svg)](https://javadoc.io/doc/com.openlayer.api/openlayer-java/0.4.2) @@ -13,7 +13,7 @@ It is generated with [Stainless](https://www.stainless.com/). -The REST API documentation can be found on [openlayer.com](https://openlayer.com/docs/api-reference/rest/overview). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.openlayer.api/openlayer-java/0.4.1). +The REST API documentation can be found on [openlayer.com](https://openlayer.com/docs/api-reference/rest/overview). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.openlayer.api/openlayer-java/0.4.2). @@ -24,7 +24,7 @@ The REST API documentation can be found on [openlayer.com](https://openlayer.com ### Gradle ```kotlin -implementation("com.openlayer.api:openlayer-java:0.4.1") +implementation("com.openlayer.api:openlayer-java:0.4.2") ``` ### Maven @@ -33,7 +33,7 @@ implementation("com.openlayer.api:openlayer-java:0.4.1") com.openlayer.api openlayer-java - 0.4.1 + 0.4.2 ``` diff --git a/build.gradle.kts b/build.gradle.kts index d818cd6c..56609952 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.openlayer.api" - version = "0.4.1" // x-release-please-version + version = "0.4.2" // x-release-please-version } subprojects {