From de877721f407d927a98bf94e8b1db1e57d247ce6 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 17:10:01 +0000 Subject: [PATCH] release: 0.5.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 20 ++++++++++++++++++++ README.md | 6 +++--- build.gradle.kts | 2 +- 4 files changed, 25 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index da59f99e..2aca35ae 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.0" + ".": "0.5.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9275574e..17ce0f43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 0.5.0 (2024-11-25) + +Full Changelog: [v0.4.0...v0.5.0](https://github.com/openai/openai-java/compare/v0.4.0...v0.5.0) + +### Features + +* **client:** add logging when debug env is set ([#18](https://github.com/openai/openai-java/issues/18)) ([73cdedc](https://github.com/openai/openai-java/commit/73cdedcc55ee2de411197ab7df55b217e20654f3)) +* docs: add note that we're in alpha ([#19](https://github.com/openai/openai-java/issues/19)) ([8c90426](https://github.com/openai/openai-java/commit/8c9042674a1b15147dacc0735bab12c2e20951d8)) +* docs: swap example from `.completions()` to `.chat().completions()` ([#20](https://github.com/openai/openai-java/issues/20)) ([b995904](https://github.com/openai/openai-java/commit/b9959043db111a41d27d74e212d1eb4abad23fac)) + + +### 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 9f6a7fe4..662c37e4 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.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.5.0) @@ -30,7 +30,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.5.0") ``` #### Maven @@ -39,7 +39,7 @@ implementation("com.openai:openai-java:0.4.0") com.openai openai-java - 0.4.0 + 0.5.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index 855ac122..bd927c56 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.5.0" // x-release-please-version } nexusPublishing {