diff --git a/CHANGELOG.md b/CHANGELOG.md index fabc01b..ea58f56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.20] - 2024-10-01 + +### Added + +- Support for OpenAI completion response usage + ## [0.8.19] - 2024-10-01 ### Added @@ -234,7 +240,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Upgrade OpenAI chat models: **gpt-4-0125-preview**, **gpt-3.5-turbo-0125** -[0.8.19]: https://github.com/carlrobertoh/llm-client/compare/933b363c24947884b0fcf7fc9be7c9f34d3b2d33...HEAD +[0.8.20]: https://github.com/carlrobertoh/llm-client/compare/59a92c5d9db18856b9c35a70e5f2ebe8d23ea29e...HEAD +[0.8.19]: https://github.com/carlrobertoh/llm-client/compare/933b363c24947884b0fcf7fc9be7c9f34d3b2d33...59a92c5d9db18856b9c35a70e5f2ebe8d23ea29e [0.8.18]: https://github.com/carlrobertoh/llm-client/compare/0940ecb8e83956c273f62e63f007b4f1bc4550cb...933b363c24947884b0fcf7fc9be7c9f34d3b2d33 [0.8.17]: https://github.com/carlrobertoh/llm-client/compare/6b7e26477b8e3454e78c8c639e97c8803fa5a301...0940ecb8e83956c273f62e63f007b4f1bc4550cb [0.8.16]: https://github.com/carlrobertoh/llm-client/compare/d714854331915387da583c9a5b24877cc06286e...6b7e26477b8e3454e78c8c639e97c8803fa5a301 diff --git a/README.md b/README.md index 5f2ea03..ed83a32 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ To use the package, you need to use following Maven dependency: ee.carlrobert llm-client - 0.8.19 + 0.8.20 ``` Gradle dependency: ```kts dependencies { - implementation("ee.carlrobert:llm-client:0.8.19") + implementation("ee.carlrobert:llm-client:0.8.20") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index d07c81b..a54e695 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "ee.carlrobert" -version = "0.8.19" +version = "0.8.20" repositories { mavenCentral()