Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Unreleased
## 0.8.10

* **Potentially breaking behavior change:** native model cache defaults changed
without breaking Dart source compatibility. `DefaultModelDownloadManager()` now
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion example/chat_app/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ packages:
path: "../.."
relative: true
source: path
version: "0.8.9"
version: "0.8.10"
logging:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion packages/llamadart_litert_lm_flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion packages/llamadart_llama_cpp_flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion website/docs/changelog/recent-releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions website/docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ 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
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
```
Expand Down
Loading