Skip to content

Commit 55e3003

Browse files
release: 0.9.0
1 parent 0c74350 commit 55e3003

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
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-
".": "0.8.1"
2+
".": "0.9.0"
33
}

CHANGELOG.md

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

3+
## 0.9.0 (2025-01-03)
4+
5+
Full Changelog: [v0.8.1...v0.9.0](https://github.com/openai/openai-java/compare/v0.8.1...v0.9.0)
6+
7+
### ⚠ BREAKING CHANGES
8+
9+
* **client:** switch query params objects to use `QueryParams` ([#64](https://github.com/openai/openai-java/issues/64))
10+
11+
### Features
12+
13+
* **client:** put body field in params, add more convenience methods, and add missing docs ([#77](https://github.com/openai/openai-java/issues/77)) ([0c74350](https://github.com/openai/openai-java/commit/0c74350f0e5d1f0a30ae9b27c50a306ca081b1a7))
14+
15+
16+
### Chores
17+
18+
* bump license year ([#74](https://github.com/openai/openai-java/issues/74)) ([769175d](https://github.com/openai/openai-java/commit/769175d3c42b6679e8ea91847e1fba32ab76d9a6))
19+
20+
21+
### Refactors
22+
23+
* **client:** switch query params objects to use `QueryParams` ([#64](https://github.com/openai/openai-java/issues/64)) ([4e9c3eb](https://github.com/openai/openai-java/commit/4e9c3eb9351f308ed3d842bd4aa2d860c23d568e))
24+
* **internal:** use constructor to deserialize json ([#66](https://github.com/openai/openai-java/issues/66)) ([27389cd](https://github.com/openai/openai-java/commit/27389cd377ce9a109a4aa25f78f70c36ca62de14))
25+
326
## 0.8.1 (2024-12-21)
427

528
Full Changelog: [v0.8.0...v0.8.1](https://github.com/openai/openai-java/compare/v0.8.0...v0.8.1)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
<!-- x-release-please-start-version -->
1111

12-
[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/0.8.1)
12+
[![Maven Central](https://img.shields.io/maven-central/v/com.openai/openai-java)](https://central.sonatype.com/artifact/com.openai/openai-java/0.9.0)
1313

1414
<!-- x-release-please-end -->
1515

@@ -32,7 +32,7 @@ The REST API documentation can be found on [platform.openai.com](https://platfo
3232
<!-- x-release-please-start-version -->
3333

3434
```kotlin
35-
implementation("com.openai:openai-java:0.8.1")
35+
implementation("com.openai:openai-java:0.9.0")
3636
```
3737

3838
#### Maven
@@ -41,7 +41,7 @@ implementation("com.openai:openai-java:0.8.1")
4141
<dependency>
4242
<groupId>com.openai</groupId>
4343
<artifactId>openai-java</artifactId>
44-
<version>0.8.1</version>
44+
<version>0.9.0</version>
4545
</dependency>
4646
```
4747

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
allprojects {
66
group = "com.openai"
7-
version = "0.8.1" // x-release-please-version
7+
version = "0.9.0" // x-release-please-version
88
}
99

1010

0 commit comments

Comments
 (0)