From a6b6e7e3bc5f4dcb47f5ebb382371657f32996a4 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Fri, 22 Nov 2024 11:29:25 +0000 Subject: [PATCH] release: 0.4.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 13 +++++++++++++ README.md | 6 +++--- build.gradle.kts | 2 +- 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index da59f99e..3e2bf498 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.0" + ".": "0.4.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9275574e..ff139a46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.4.1 (2024-11-22) + +Full Changelog: [v0.4.0...v0.4.1](https://github.com/openai/openai-java/compare/v0.4.0...v0.4.1) + +### Documentation + +* **readme:** add Microsoft Azure section ([#17](https://github.com/openai/openai-java/issues/17)) ([fd9e9dc](https://github.com/openai/openai-java/commit/fd9e9dcaa932d2bf7466cf6e0e9907b00c9747ee)) + + +### Styles + +* **internal:** reorder some params methods and improve consistency of implementations ([#15](https://github.com/openai/openai-java/issues/15)) ([6ddc67e](https://github.com/openai/openai-java/commit/6ddc67ec0395987b7bf025dee341bf8d1e157c26)) + ## 0.4.0 (2024-11-21) Full Changelog: [v0.3.0...v0.4.0](https://github.com/openai/openai-java/compare/v0.3.0...v0.4.0) diff --git a/README.md b/README.md index 95db45a4..ece73166 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ -[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/0.4.0) +[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/0.4.1) @@ -25,7 +25,7 @@ The REST API documentation can be foundĀ on [platform.openai.com](https://platfo ```kotlin -implementation("com.openai:openai-java:0.4.0") +implementation("com.openai:openai-java:0.4.1") ``` #### Maven @@ -34,7 +34,7 @@ implementation("com.openai:openai-java:0.4.0") com.openai openai-java - 0.4.0 + 0.4.1 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 855ac122..65bd05ae 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { allprojects { group = "com.openai" - version = "0.4.0" // x-release-please-version + version = "0.4.1" // x-release-please-version } nexusPublishing {