From b0024650781a4ee01257a20beee147f55707d2c3 Mon Sep 17 00:00:00 2001 From: Carl-Robert Linnupuu Date: Wed, 4 Dec 2024 09:06:21 +0000 Subject: [PATCH] 0.8.30 --- CHANGELOG.md | 9 ++++++++- README.md | 4 ++-- build.gradle.kts | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0cc15b..53f0271 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.30] - 2024-12-01 + +### Added + +- Cursor offset API field (CodeGPT) + ## [0.8.29] - 2024-11-30 ### Added @@ -291,7 +297,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.29]: https://github.com/carlrobertoh/llm-client/compare/b50ad56c96078a85605cbe130ea171a1d8476aa1...HEAD +[0.8.29]: https://github.com/carlrobertoh/llm-client/compare/80fa1759a7ef6818204f9c351ad777e4e53a7666...HEAD +[0.8.29]: https://github.com/carlrobertoh/llm-client/compare/b50ad56c96078a85605cbe130ea171a1d8476aa1...80fa1759a7ef6818204f9c351ad777e4e53a7666 [0.8.28]: https://github.com/carlrobertoh/llm-client/compare/c6d311690a6a47f4a8cad521118b37ead11eca39...b50ad56c96078a85605cbe130ea171a1d8476aa1 [0.8.27]: https://github.com/carlrobertoh/llm-client/compare/84b2d6204381e7eb4aa7c0504b7f0c46ee87f880...c6d311690a6a47f4a8cad521118b37ead11eca39 [0.8.26]: https://github.com/carlrobertoh/llm-client/compare/a315976138c73fbfcc00dfdcfa6ffbea01c0c6dd...84b2d6204381e7eb4aa7c0504b7f0c46ee87f880 diff --git a/README.md b/README.md index 38bf6bf..d774f34 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.29 + 0.8.30 ``` Gradle dependency: ```kts dependencies { - implementation("ee.carlrobert:llm-client:0.8.29") + implementation("ee.carlrobert:llm-client:0.8.30") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 19d2fa0..977ada2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "ee.carlrobert" -version = "0.8.29" +version = "0.8.30" repositories { mavenCentral()