diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7467455..b894e70 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.8.4" + ".": "0.8.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 459dfde..3606ec2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - **BREAKING**: Renamed the `[model]` section in `config.toml` to `[inference]`. The section still contains a single field, `ollama_url`, but the name now reflects what it actually configures (the inference daemon endpoint, not a model). There is no backward-compatibility shim: if you had a custom `[model]` section, rename it to `[inference]` after upgrading. - Active model selection is now strictly Option-typed end to end. Ollama's `/api/tags` is the single source of truth: when nothing is installed and nothing is persisted, Thuki refuses to dispatch requests and surfaces a "Pick a model" prompt instead of falling back to a hardcoded slug. The previous `DEFAULT_MODEL_NAME` constant has been removed. +## [0.8.5](https://github.com/quiet-node/thuki/compare/v0.8.4...v0.8.5) (2026-05-08) + + +### Bug Fixes + +* **permissions:** clear stale TCC entries on upgrade and grant click ([#153](https://github.com/quiet-node/thuki/issues/153)) ([f6d9ca2](https://github.com/quiet-node/thuki/commit/f6d9ca2c9e8ffce8299be633f6a7d4338e990841)) + ## [0.8.4](https://github.com/quiet-node/thuki/compare/v0.8.3...v0.8.4) (2026-05-07) diff --git a/package.json b/package.json index efaeedb..de15400 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "thuki", - "version": "0.8.4", + "version": "0.8.5", "description": "A floating AI secretary for macOS, powered by local Ollama models", "license": "Apache-2.0", "repository": { diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 708b6eb..695a3ac 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -4179,7 +4179,7 @@ dependencies = [ [[package]] name = "thuki" -version = "0.8.4" +version = "0.8.5" dependencies = [ "async-trait", "base64 0.22.1", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index aeb4989..153b5c8 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thuki" -version = "0.8.4" +version = "0.8.5" description = "Thuki: The context-aware floating secretary" authors = ["Logan Nguyen"] license = "Apache-2.0" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 7291ff3..3ffc648 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Thuki", - "version": "0.8.4", + "version": "0.8.5", "identifier": "com.quietnode.thuki", "build": { "beforeDevCommand": "bun run frontend:dev",