diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fc0d7ff8..fea34540 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.45.0" + ".": "1.0.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 037cba0b..a58c4247 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 95 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-44b20fa9d24544217fe6bb48852037537030a1ad29b202936425110744fe66fb.yml openapi_spec_hash: ea86343b5e9858a74e85da8ab2c532f6 -config_hash: 69e3afd56ccb0f0f822a7a9dc130fc99 +config_hash: 5ea32de61ff42fcf5e66cff8d9e247ea diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ef56929..9b11a847 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 1.0.0 (2025-04-09) + +Full Changelog: [v0.45.0...v1.0.0](https://github.com/openai/openai-java/compare/v0.45.0...v1.0.0) + +### Chores + +* workaround build errors ([6c6faa0](https://github.com/openai/openai-java/commit/6c6faa0e8273f10ed9d85378f4cb9d2ef8fc360c)) + + +### Documentation + +* remove beta readme note ([829fb0a](https://github.com/openai/openai-java/commit/829fb0a8a307659e00defc3a6c39e72b7cf4dab7)) + ## 0.45.0 (2025-04-09) Full Changelog: [v0.44.5...v0.45.0](https://github.com/openai/openai-java/compare/v0.44.5...v0.45.0) diff --git a/README.md b/README.md index 01069e36..8c9d7163 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,9 @@ # OpenAI Java API Library -> [!NOTE] -> The OpenAI Java API Library is currently in _beta_. -> -> There may be minor breaking changes. -> -> Have thoughts or feedback? [File an issue](https://github.com/openai/openai-java/issues/new) or comment on [this thread](https://community.openai.com/t/your-feedback-requested-java-sdk/1061029). - -[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/0.45.0) -[![javadoc](https://javadoc.io/badge2/com.openai/openai-java/0.45.0/javadoc.svg)](https://javadoc.io/doc/com.openai/openai-java/0.45.0) +[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/1.0.0) +[![javadoc](https://javadoc.io/badge2/com.openai/openai-java/1.0.0/javadoc.svg)](https://javadoc.io/doc/com.openai/openai-java/1.0.0) @@ -18,7 +11,7 @@ The OpenAI Java SDK provides convenient access to the [OpenAI REST API](https:// -The REST API documentation can be found on [platform.openai.com](https://platform.openai.com/docs). Javadocs are also available on [javadoc.io](https://javadoc.io/doc/com.openai/openai-java/0.45.0). +The REST API documentation can be found on [platform.openai.com](https://platform.openai.com/docs). Javadocs are also available on [javadoc.io](https://javadoc.io/doc/com.openai/openai-java/1.0.0). @@ -29,7 +22,7 @@ The REST API documentation can be found on [platform.openai.com](https://platfor ### Gradle ```kotlin -implementation("com.openai:openai-java:0.45.0") +implementation("com.openai:openai-java:1.0.0") ``` ### Maven @@ -38,7 +31,7 @@ implementation("com.openai:openai-java:0.45.0") com.openai openai-java - 0.45.0 + 1.0.0 ``` diff --git a/build.gradle.kts b/build.gradle.kts index b5cf7b4b..6bb99c8f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ repositories { allprojects { group = "com.openai" - version = "0.45.0" // x-release-please-version + version = "1.0.0" // x-release-please-version } subprojects {