Skip to content

Commit 0917876

Browse files
release: 1.0.0 (#425)
* chore: workaround build errors * docs: remove beta readme note * release: 1.0.0 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com> Co-authored-by: Tomer Aberbach <[email protected]>
1 parent 53e6943 commit 0917876

File tree

5 files changed

+21
-15
lines changed

5 files changed

+21
-15
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.45.0"
2+
".": "1.0.0"
33
}

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 95
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-44b20fa9d24544217fe6bb48852037537030a1ad29b202936425110744fe66fb.yml
33
openapi_spec_hash: ea86343b5e9858a74e85da8ab2c532f6
4-
config_hash: 69e3afd56ccb0f0f822a7a9dc130fc99
4+
config_hash: 5ea32de61ff42fcf5e66cff8d9e247ea

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 1.0.0 (2025-04-09)
4+
5+
Full Changelog: [v0.45.0...v1.0.0](https://github.com/openai/openai-java/compare/v0.45.0...v1.0.0)
6+
7+
### Chores
8+
9+
* workaround build errors ([6c6faa0](https://github.com/openai/openai-java/commit/6c6faa0e8273f10ed9d85378f4cb9d2ef8fc360c))
10+
11+
12+
### Documentation
13+
14+
* remove beta readme note ([829fb0a](https://github.com/openai/openai-java/commit/829fb0a8a307659e00defc3a6c39e72b7cf4dab7))
15+
316
## 0.45.0 (2025-04-09)
417

518
Full Changelog: [v0.44.5...v0.45.0](https://github.com/openai/openai-java/compare/v0.44.5...v0.45.0)

README.md

+5-12
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
11
# OpenAI Java API Library
22

3-
> [!NOTE]
4-
> The OpenAI Java API Library is currently in _beta_.
5-
>
6-
> There may be minor breaking changes.
7-
>
8-
> 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).
9-
103
<!-- x-release-please-start-version -->
114

12-
[![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)
13-
[![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)
5+
[![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)
6+
[![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)
147

158
<!-- x-release-please-end -->
169

1710
The OpenAI Java SDK provides convenient access to the [OpenAI REST API](https://platform.openai.com/docs) from applications written in Java.
1811

1912
<!-- x-release-please-start-version -->
2013

21-
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).
14+
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).
2215

2316
<!-- x-release-please-end -->
2417

@@ -29,7 +22,7 @@ The REST API documentation can be found on [platform.openai.com](https://platfor
2922
### Gradle
3023

3124
```kotlin
32-
implementation("com.openai:openai-java:0.45.0")
25+
implementation("com.openai:openai-java:1.0.0")
3326
```
3427

3528
### Maven
@@ -38,7 +31,7 @@ implementation("com.openai:openai-java:0.45.0")
3831
<dependency>
3932
<groupId>com.openai</groupId>
4033
<artifactId>openai-java</artifactId>
41-
<version>0.45.0</version>
34+
<version>1.0.0</version>
4235
</dependency>
4336
```
4437

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

99
allprojects {
1010
group = "com.openai"
11-
version = "0.45.0" // x-release-please-version
11+
version = "1.0.0" // x-release-please-version
1212
}
1313

1414
subprojects {

0 commit comments

Comments
 (0)