From c904178518bec170b03585fc1c8ed4a5291c5b35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A8=8B=E5=BA=8F=E5=91=98=E9=98=BF=E6=B1=9F=28Relakkes?= =?UTF-8?q?=29?= Date: Sun, 19 Apr 2026 15:25:08 +0800 Subject: [PATCH] Cut desktop version 0.1.1 so release tags match the merged Windows fixes The Windows desktop fixes are already merged to main, but the desktop package and Tauri app metadata still reported 0.1.0. Bumping both version sources to 0.1.1 keeps the app bundle metadata, CI artifact naming, and release tag in sync for the next desktop release. Constraint: The release workflow reads desktop version metadata directly from the repository Rejected: Tag v0.1.1 without updating version files | release artifacts would still identify themselves as 0.1.0 Confidence: high Scope-risk: narrow Reversibility: clean Directive: Keep desktop/package.json and desktop/src-tauri/tauri.conf.json version fields aligned for every desktop release Tested: Verified version fields updated to 0.1.1 in both desktop metadata files Not-tested: Release workflow execution after tag push Related: Release v0.1.1 --- desktop/package.json | 2 +- desktop/src-tauri/tauri.conf.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/package.json b/desktop/package.json index 6d64c824..2fdf496f 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -1,7 +1,7 @@ { "name": "claude-code-desktop", "private": true, - "version": "0.1.0", + "version": "0.1.1", "type": "module", "scripts": { "dev": "vite", diff --git a/desktop/src-tauri/tauri.conf.json b/desktop/src-tauri/tauri.conf.json index 57b69a2c..318e2e0f 100644 --- a/desktop/src-tauri/tauri.conf.json +++ b/desktop/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/nicegui/nicegui/main/nicegui/static/tauri-schema-v2.json", "productName": "Claude Code Haha", - "version": "0.1.0", + "version": "0.1.1", "identifier": "com.claude-code-haha.desktop", "build": { "frontendDist": "../dist",