Skip to content

Commit 4f4ce3d

Browse files
release: 2.20.0
1 parent 5e66153 commit 4f4ce3d

File tree

4 files changed

+19
-9
lines changed

4 files changed

+19
-9
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.19.2"
2+
".": "2.20.0"
33
}

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 2.20.0 (2025-07-30)
4+
5+
Full Changelog: [v2.19.2...v2.20.0](https://github.com/openai/openai-java/compare/v2.19.2...v2.20.0)
6+
7+
### Features
8+
9+
* add retryable exception ([4916163](https://github.com/openai/openai-java/commit/4916163ef5e9d06b137341373ab3eb4cc7e3038b))
10+
* **api:** manual updates ([c4f9a92](https://github.com/openai/openai-java/commit/c4f9a921b63366b3abf3d502c895ec2bfed5329a))
11+
* **client:** ensure compat with proguard ([0d4db65](https://github.com/openai/openai-java/commit/0d4db656adbbdced4d7d9493cf176045e38d3b89))
12+
313
## 2.19.2 (2025-07-28)
414

515
Full Changelog: [v2.19.1...v2.19.2](https://github.com/openai/openai-java/compare/v2.19.1...v2.19.2)

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
<!-- x-release-please-start-version -->
44

5-
[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/2.19.2)
6-
[![javadoc](https://javadoc.io/badge2/com.openai/openai-java/2.19.2/javadoc.svg)](https://javadoc.io/doc/com.openai/openai-java/2.19.2)
5+
[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/2.20.0)
6+
[![javadoc](https://javadoc.io/badge2/com.openai/openai-java/2.20.0/javadoc.svg)](https://javadoc.io/doc/com.openai/openai-java/2.20.0)
77

88
<!-- x-release-please-end -->
99

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

1212
<!-- x-release-please-start-version -->
1313

14-
The REST API documentation can be found on [platform.openai.com](https://platform.openai.com/docs). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.openai/openai-java/2.19.2).
14+
The REST API documentation can be found on [platform.openai.com](https://platform.openai.com/docs). Javadocs are available on [javadoc.io](https://javadoc.io/doc/com.openai/openai-java/2.20.0).
1515

1616
<!-- x-release-please-end -->
1717

@@ -24,7 +24,7 @@ The REST API documentation can be found on [platform.openai.com](https://platfor
2424
### Gradle
2525

2626
```kotlin
27-
implementation("com.openai:openai-java:2.19.2")
27+
implementation("com.openai:openai-java:2.20.0")
2828
```
2929

3030
### Maven
@@ -33,7 +33,7 @@ implementation("com.openai:openai-java:2.19.2")
3333
<dependency>
3434
<groupId>com.openai</groupId>
3535
<artifactId>openai-java</artifactId>
36-
<version>2.19.2</version>
36+
<version>2.20.0</version>
3737
</dependency>
3838
```
3939

@@ -1329,7 +1329,7 @@ If you're using Spring Boot, then you can use the SDK's [Spring Boot starter](ht
13291329
#### Gradle
13301330

13311331
```kotlin
1332-
implementation("com.openai:openai-java-spring-boot-starter:2.19.2")
1332+
implementation("com.openai:openai-java-spring-boot-starter:2.20.0")
13331333
```
13341334

13351335
#### Maven
@@ -1338,7 +1338,7 @@ implementation("com.openai:openai-java-spring-boot-starter:2.19.2")
13381338
<dependency>
13391339
<groupId>com.openai</groupId>
13401340
<artifactId>openai-java-spring-boot-starter</artifactId>
1341-
<version>2.19.2</version>
1341+
<version>2.20.0</version>
13421342
</dependency>
13431343
```
13441344

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repositories {
88

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

1414
subprojects {

0 commit comments

Comments
 (0)