diff --git a/CHANGELOG.md b/CHANGELOG.md index 395ed49..a3ed83a 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.17] - 2024-09-12 + +### Fixed + +- Ollama host overriding + ## [0.8.16] - 2024-09-05 ### Fixed @@ -216,7 +222,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.16]: https://github.com/carlrobertoh/llm-client/compare/d714854331915387da583c9a5b24877cc06286e...HEAD +[0.8.17]: https://github.com/carlrobertoh/llm-client/compare/6b7e26477b8e3454e78c8c639e97c8803fa5a301...HEAD +[0.8.16]: https://github.com/carlrobertoh/llm-client/compare/d714854331915387da583c9a5b24877cc06286e...6b7e26477b8e3454e78c8c639e97c8803fa5a301 [0.8.15]: https://github.com/carlrobertoh/llm-client/compare/fa0539e06d6cd8d21a4d0fa3336c747c2cb68fcc...d714854331915387da583c9a5b24877cc06286e [0.8.14]: https://github.com/carlrobertoh/llm-client/compare/6461c8458325e7b2a33670fc09493b3357eb094c...fa0539e06d6cd8d21a4d0fa3336c747c2cb68fcc [0.8.13]: https://github.com/carlrobertoh/llm-client/compare/a55fe7dcefbe6b911d5b99950d402dd06a66ec1e...6461c8458325e7b2a33670fc09493b3357eb094c diff --git a/README.md b/README.md index 43a6e65..5263b86 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.16 + 0.8.17 ``` Gradle dependency: ```kts dependencies { - implementation("ee.carlrobert:llm-client:0.8.16") + implementation("ee.carlrobert:llm-client:0.8.17") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index a421d4d..150f3a0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "ee.carlrobert" -version = "0.8.16" +version = "0.8.17" repositories { mavenCentral()