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 979adfc66..e06eb1040 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -2,9 +2,13 @@ plugins { id("org.jetbrains.dokka") version "2.0.0" } +repositories { + mavenCentral() +} + allprojects { group = "com.openai" - version = "0.11.4" // x-release-please-version + version = "0.11.5" // x-release-please-version } subprojects {