Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "4.50.0"
".": "4.50.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [4.50.1](https://github.com/openai/openai-java/compare/v4.50.0...v4.50.1) (2026-08-05)


### Documentation

* keep README badges on latest release ([#839](https://github.com/openai/openai-java/issues/839)) ([33c6b57](https://github.com/openai/openai-java/commit/33c6b57709af067148dea6026c0d160df3413635))

## [4.50.0](https://github.com/openai/openai-java/compare/v4.49.0...v4.50.0) (2026-08-03)


Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ Then in your project's `build.gradle.kts` or `pom.xml`, reference the locally pu
<!-- x-release-please-start-version -->

```kotlin
implementation("com.openai:openai-java:4.50.0")
implementation("com.openai:openai-java:4.50.1")
```

```xml
<dependency>
<groupId>com.openai</groupId>
<artifactId>openai-java</artifactId>
<version>4.50.0</version>
<version>4.50.1</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The REST API documentation can be found on [platform.openai.com](https://platfor
### Gradle

```kotlin
implementation("com.openai:openai-java:4.50.0")
implementation("com.openai:openai-java:4.50.1")
```

### Maven
Expand All @@ -24,7 +24,7 @@ implementation("com.openai:openai-java:4.50.0")
<dependency>
<groupId>com.openai</groupId>
<artifactId>openai-java</artifactId>
<version>4.50.0</version>
<version>4.50.1</version>
</dependency>
```

Expand Down Expand Up @@ -87,7 +87,7 @@ with normal AWS credentials:
<!-- x-release-please-start-version -->

```kotlin
implementation("com.openai:openai-java-bedrock:4.50.0")
implementation("com.openai:openai-java-bedrock:4.50.1")
```

<!-- x-release-please-end -->
Expand Down
4 changes: 2 additions & 2 deletions bedrock.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ Use this artifact instead of adding AWS dependencies to the base OpenAI package
<!-- x-release-please-start-version -->

```kotlin
implementation("com.openai:openai-java-bedrock:4.50.0")
implementation("com.openai:openai-java-bedrock:4.50.1")
```

```xml
<dependency>
<groupId>com.openai</groupId>
<artifactId>openai-java-bedrock</artifactId>
<version>4.50.0</version>
<version>4.50.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repositories {

allprojects {
group = "com.openai"
version = "4.50.0" // x-release-please-version
version = "4.50.1" // x-release-please-version

// Dokka 2.1.0 depends on Jackson 2.15.3. Keep its isolated build-tool classpaths on a
// secure, internally aligned Jackson release without changing the SDK's published or
Expand Down
Loading