From 0098db4f6829a9609aa5d2da7dfb7881a635c693 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 13 Dec 2024 05:02:50 +0000 Subject: [PATCH] release: 0.7.5 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 10 ++++++++++ README.md | 6 +++--- build.gradle.kts | 2 +- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 904b037..5a8dc58 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.7.4" + ".": "0.7.5" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 63b41aa..4723695 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 0.7.5 (2024-12-13) + +Full Changelog: [v0.7.4...v0.7.5](https://github.com/openai/openai-java/compare/v0.7.4...v0.7.5) + +### Chores + +* **internal:** remove unused and expand used wildcard imports ([#43](https://github.com/openai/openai-java/issues/43)) ([39bfc4e](https://github.com/openai/openai-java/commit/39bfc4e4a15ce52c029ed31253afff9d9de36cc1)) +* **internal:** remove unused and expand used wildcard imports ([#44](https://github.com/openai/openai-java/issues/44)) ([7f7e131](https://github.com/openai/openai-java/commit/7f7e1313bde6827cd9067b712f3d7992ddeeaa6f)) +* **test:** use `JsonValue` instead of `JsonString` ([#41](https://github.com/openai/openai-java/issues/41)) ([8d2dd03](https://github.com/openai/openai-java/commit/8d2dd030899ad807a4712e00a33426c7484bcab5)) + ## 0.7.4 (2024-12-12) Full Changelog: [v0.7.3...v0.7.4](https://github.com/openai/openai-java/compare/v0.7.3...v0.7.4) diff --git a/README.md b/README.md index cac488e..e93a878 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/0.7.4) +[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/0.7.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.7.4") +implementation("com.openai:openai-java:0.7.5") ``` #### Maven @@ -39,7 +39,7 @@ implementation("com.openai:openai-java:0.7.4") com.openai openai-java - 0.7.4 + 0.7.5 ``` diff --git a/build.gradle.kts b/build.gradle.kts index a550f1e..1215013 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { allprojects { group = "com.openai" - version = "0.7.4" // x-release-please-version + version = "0.7.5" // x-release-please-version }