From 944f4453418da8d2ec5c0a23b4706ac19e273a9c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 00:58:17 +0000 Subject: [PATCH 1/2] chore(main): release 0.16.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 256c8810..45c13caf 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.16.1" + ".": "0.16.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 52934a08..be628e84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,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]` and reshaped it from a single `ollama_url` string into the providers schema described above. There is no backward-compatibility shim for the section name: if you had a custom `[model]` section, rename it to `[inference]` after upgrading; a flat `ollama_url` inside `[inference]` is migrated automatically. - Active model selection is now strictly Option-typed end to end: 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.16.2](https://github.com/quiet-node/thuki/compare/v0.16.1...v0.16.2) (2026-07-21) + + +### Bug Fixes + +* **prompt:** stop base system prompt forcing language guesses on all providers ([#350](https://github.com/quiet-node/thuki/issues/350)) ([bfaa8f9](https://github.com/quiet-node/thuki/commit/bfaa8f95d6ed551c926ee84c394deed761bdc2a0)) + ## [0.16.1](https://github.com/quiet-node/thuki/compare/v0.16.0...v0.16.1) (2026-07-18) diff --git a/package.json b/package.json index 55dd3dd5..10c4e069 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "thuki", - "version": "0.16.1", + "version": "0.16.2", "description": "A floating AI secretary for macOS with its own local AI engine", "license": "Apache-2.0", "repository": { diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index b058a973..00afa281 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thuki" -version = "0.16.1" +version = "0.16.2" 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 3060c7c8..426c5346 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.16.1", + "version": "0.16.2", "identifier": "com.quietnode.thuki", "build": { "beforeDevCommand": "bun run frontend:dev", From 25df8b4d9f3ab5728bbaaba25651a296ba542b49 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Jul 2026 00:58:40 +0000 Subject: [PATCH 2/2] chore: sync Cargo.lock to version bump --- src-tauri/Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index ff0a5458..bf7226ae 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -4566,7 +4566,7 @@ dependencies = [ [[package]] name = "thuki" -version = "0.16.1" +version = "0.16.2" dependencies = [ "async-trait", "base64 0.22.1",