diff --git a/CHANGELOG.md b/CHANGELOG.md index 06278015..a2584628 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ -## Unreleased +## 3.6.3 +> Published 13 Jan 2024 ### Added -- **Images**: add `quality` and `style` fields (#292) +- **Images**: add `quality` and `style` fields (#292) +- **Runs**: add `additionalInstructions` property to `RunRequest` (#293) (thanks @ahmedmirza994) ### Fixed - **Messages**: `MessageFile` optional fields (#290) +- **proguard**: Add `EnclosingMethod` proguard rule (thanks @afsanjani) ## 3.6.2 > Published 15 Dec 2023 diff --git a/README.md b/README.md index 8f0dec36..fc1eab01 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ repositories { } dependencies { - implementation "com.aallam.openai:openai-client:3.6.2" + implementation "com.aallam.openai:openai-client:3.6.3" } ``` @@ -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.6.2') + implementation platform('com.aallam.openai:openai-client-bom:3.6.3') // define dependencies without versions implementation 'com.aallam.openai:openai-client' @@ -57,7 +57,7 @@ of [Ktor's engines](https://ktor.io/docs/http-client-engines.html). com.aallam.openai openai-client-jvm - 3.6.2 + 3.6.3 diff --git a/gradle.properties b/gradle.properties index 0d119c89..e47da104 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ kotlin.js.compiler=ir # Lib GROUP=com.aallam.openai -VERSION_NAME=3.6.3-SNAPSHOT +VERSION_NAME=3.6.3 # OSS SONATYPE_HOST=DEFAULT