From 91f971a9c84398c053c00e350f42a96b6f026ae0 Mon Sep 17 00:00:00 2001 From: Mouaad Aallam Date: Sat, 20 Jul 2024 11:17:41 +0200 Subject: [PATCH] chore: prepare release 3.8.2 --- CHANGELOG.md | 9 ++++++++- README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3419cfce..e59cb956 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,15 @@ -## Unreleased +## 3.8.2 ### Added - **chat**: add stream options (#363) - **chat**: add `instanceId` field to `ChatCompletionRequest` (#359) (thanks @harishv-collab) +- **messages**: add assistant tools to attachments (#370) +- **assistants**: add `attachments.fileId` field to `MessageRequest` (#367) (thanks @0chil) +- **runs**: feat(runs): add new fields into assistant run (#366) (thanks @ahmedmirza994) + +### Fixed +- **messages**: update `quote` to optional field for openai compatibility assistant on FileCitation (#361) (thanks @AntoDev) +- **messages**: serialization exception while retrieving thread messages (#369) (thanks @meroving) # 3.8.1 > Published 28 Jun 2024 diff --git a/README.md b/README.md index 34aa4911..bb3ae870 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ repositories { } dependencies { - implementation "com.aallam.openai:openai-client:3.8.1" + implementation "com.aallam.openai:openai-client:3.8.2" } ``` @@ -30,7 +30,7 @@ Alternatively, you can use [openai-client-bom](/openai-client-bom) by adding th ```groovy dependencies { // import Kotlin API client BOM - implementation platform('com.aallam.openai:openai-client-bom:3.8.1') + implementation platform('com.aallam.openai:openai-client-bom:3.8.2') // define dependencies without versions implementation 'com.aallam.openai:openai-client' diff --git a/gradle.properties b/gradle.properties index cc91110b..384a535a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ kotlin.js.compiler=ir # Lib GROUP=com.aallam.openai -VERSION_NAME=3.8.2-SNAPSHOT +VERSION_NAME=3.8.2 # OSS SONATYPE_HOST=DEFAULT