diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 047c623e..b08cc4ff 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.15.1" + ".": "0.15.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b12f7a8e..944ffefd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,23 @@ 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.15.2](https://github.com/quiet-node/thuki/compare/v0.15.1...v0.15.2) (2026-06-30) + + +### Features + +* **models:** clickable Browse-all quant filenames + non-blocking model delete ([#271](https://github.com/quiet-node/thuki/issues/271)) ([b68c663](https://github.com/quiet-node/thuki/commit/b68c66329ad872da5593fb60c085d68cc9018497)) + + +### Bug Fixes + +* **window:** dock icon + normal layering for Settings and onboarding ([#273](https://github.com/quiet-node/thuki/issues/273)) ([a439e5e](https://github.com/quiet-node/thuki/commit/a439e5e10c04b5678ac8f31e55a572ed59addac7)) + + +### Miscellaneous Chores + +* release 0.15.2 ([0ddbf68](https://github.com/quiet-node/thuki/commit/0ddbf685935d9ed97a8f12f6bf2b6015d6c369ef)) + ## [0.15.1](https://github.com/quiet-node/thuki/compare/v0.15.0...v0.15.1) (2026-06-30) diff --git a/package.json b/package.json index 1e903852..c0d5f7fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "thuki", - "version": "0.15.1", + "version": "0.15.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.lock b/src-tauri/Cargo.lock index b6693678..f056ab0d 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -4318,7 +4318,7 @@ dependencies = [ [[package]] name = "thuki" -version = "0.15.1" +version = "0.15.2" dependencies = [ "async-trait", "base64 0.22.1", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index e31f5b7d..cc98e0e4 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thuki" -version = "0.15.1" +version = "0.15.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 b54c5b11..91638239 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.15.1", + "version": "0.15.2", "identifier": "com.quietnode.thuki", "build": { "beforeDevCommand": "bun run frontend:dev",