From 48a6376efc05baf4e27b11e8199a3225b01ba5d5 Mon Sep 17 00:00:00 2001 From: Jhin Lee Date: Fri, 26 Jun 2026 16:23:22 -0400 Subject: [PATCH] chore: prepare 0.8.10 release --- CHANGELOG.md | 2 +- README.md | 4 ++-- example/chat_app/pubspec.lock | 2 +- packages/llamadart_litert_lm_flutter/README.md | 2 +- packages/llamadart_llama_cpp_flutter/README.md | 2 +- pubspec.yaml | 2 +- website/docs/changelog/recent-releases.md | 2 +- website/docs/getting-started/installation.md | 4 ++-- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03e49ccf..bf319b3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## 0.8.10 * **Potentially breaking behavior change:** native model cache defaults changed without breaking Dart source compatibility. `DefaultModelDownloadManager()` now diff --git a/README.md b/README.md index 65448e05..e86de9a0 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ JavaScript runtime. ```yaml dependencies: - llamadart: ^0.8.9 + llamadart: ^0.8.10 ``` Flutter iOS/macOS apps that want Swift Package Manager-linked Apple @@ -61,7 +61,7 @@ they ship: ```yaml dependencies: - llamadart: ^0.8.9 + llamadart: ^0.8.10 llamadart_llama_cpp_flutter: ^0.0.6 # GGUF / llama.cpp llamadart_litert_lm_flutter: ^0.0.2 # .litertlm / LiteRT-LM ``` diff --git a/example/chat_app/pubspec.lock b/example/chat_app/pubspec.lock index 51462632..610921f3 100644 --- a/example/chat_app/pubspec.lock +++ b/example/chat_app/pubspec.lock @@ -349,7 +349,7 @@ packages: path: "../.." relative: true source: path - version: "0.8.9" + version: "0.8.10" logging: dependency: transitive description: diff --git a/packages/llamadart_litert_lm_flutter/README.md b/packages/llamadart_litert_lm_flutter/README.md index cde88be7..3caafb13 100644 --- a/packages/llamadart_litert_lm_flutter/README.md +++ b/packages/llamadart_litert_lm_flutter/README.md @@ -10,7 +10,7 @@ core package's native-assets fallback. ```yaml dependencies: - llamadart: ^0.8.9 + llamadart: ^0.8.10 llamadart_litert_lm_flutter: ^0.0.2 ``` diff --git a/packages/llamadart_llama_cpp_flutter/README.md b/packages/llamadart_llama_cpp_flutter/README.md index 115868e6..1f250a43 100644 --- a/packages/llamadart_llama_cpp_flutter/README.md +++ b/packages/llamadart_llama_cpp_flutter/README.md @@ -9,7 +9,7 @@ core package's native-assets fallback. ```yaml dependencies: - llamadart: ^0.8.9 + llamadart: ^0.8.10 llamadart_llama_cpp_flutter: ^0.0.6 ``` diff --git a/pubspec.yaml b/pubspec.yaml index 86a2fbbe..519f11ce 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: llamadart description: Dart and Flutter local LLM inference with llama.cpp GGUF and LiteRT-LM across native platforms and web. -version: 0.8.9 +version: 0.8.10 homepage: https://github.com/leehack/llamadart repository: https://github.com/leehack/llamadart issue_tracker: https://github.com/leehack/llamadart/issues diff --git a/website/docs/changelog/recent-releases.md b/website/docs/changelog/recent-releases.md index 5de89dcc..d091f143 100644 --- a/website/docs/changelog/recent-releases.md +++ b/website/docs/changelog/recent-releases.md @@ -7,7 +7,7 @@ For canonical full release notes, use: - [`CHANGELOG.md`](https://github.com/leehack/llamadart/blob/main/CHANGELOG.md) -## Unreleased +## 0.8.10 - **Potentially breaking behavior change:** native model cache defaults changed without breaking Dart source compatibility. `DefaultModelDownloadManager()` now diff --git a/website/docs/getting-started/installation.md b/website/docs/getting-started/installation.md index fe1411c0..7aa28df9 100644 --- a/website/docs/getting-started/installation.md +++ b/website/docs/getting-started/installation.md @@ -27,7 +27,7 @@ In Xcode, set `IPHONEOS_DEPLOYMENT_TARGET = 16.4` or ```yaml dependencies: - llamadart: ^0.8.9 + llamadart: ^0.8.10 ``` For Flutter iOS/macOS apps that should link Apple XCFrameworks through Swift @@ -35,7 +35,7 @@ Package Manager, also add the runtime companion packages you need: ```yaml dependencies: - llamadart: ^0.8.9 + llamadart: ^0.8.10 llamadart_llama_cpp_flutter: ^0.0.6 # GGUF / llama.cpp llamadart_litert_lm_flutter: ^0.0.2 # .litertlm / LiteRT-LM ```