From 73e22eae2e905919172ab4d7e3b18b44d435205e Mon Sep 17 00:00:00 2001 From: Tomer Aberbach Date: Wed, 15 Jan 2025 22:12:43 -0500 Subject: [PATCH 1/2] fix(internal): publishing error --- build.gradle.kts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 979adfc66..18b5ae71b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -2,6 +2,10 @@ plugins { id("org.jetbrains.dokka") version "2.0.0" } +repositories { + mavenCentral() +} + allprojects { group = "com.openai" version = "0.11.4" // x-release-please-version From 3ec1971190ca14312250c3e5747e5d7e45bf48f1 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 16 Jan 2025 03:13:44 +0000 Subject: [PATCH 2/2] release: 0.11.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ README.md | 6 +++--- build.gradle.kts | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 536ca3161..d87cca6de 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.11.4" + ".": "0.11.5" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d26e9d4da..3db45e15f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.11.5 (2025-01-16) + +Full Changelog: [v0.11.4...v0.11.5](https://github.com/openai/openai-java/compare/v0.11.4...v0.11.5) + +### Bug Fixes + +* **internal:** publishing error ([73e22ea](https://github.com/openai/openai-java/commit/73e22eae2e905919172ab4d7e3b18b44d435205e)) + ## 0.11.4 (2025-01-16) Full Changelog: [v0.11.3...v0.11.4](https://github.com/openai/openai-java/compare/v0.11.3...v0.11.4) diff --git a/README.md b/README.md index 5c19263f0..f960fb5f8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/0.11.4) +[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/0.11.5) @@ -30,7 +30,7 @@ The REST API documentation can be foundĀ on [platform.openai.com](https://platfo ```kotlin -implementation("com.openai:openai-java:0.11.4") +implementation("com.openai:openai-java:0.11.5") ``` #### Maven @@ -39,7 +39,7 @@ implementation("com.openai:openai-java:0.11.4") com.openai openai-java - 0.11.4 + 0.11.5 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 18b5ae71b..e06eb1040 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.openai" - version = "0.11.4" // x-release-please-version + version = "0.11.5" // x-release-please-version } subprojects {