From 28f579a1aeeb1b427e1f7422e9b58496e527b057 Mon Sep 17 00:00:00 2001 From: Shaun Arman Date: Sat, 23 May 2026 17:36:38 -0500 Subject: [PATCH] fix: bump tauri.conf.json version to 0.3.0 Cargo.toml was updated to 0.3.0 for the MCP feature but tauri.conf.json was missed. Bundle artifact filenames are derived from tauri.conf.json, so all builds were producing files named 0.2.68. --- src-tauri/tauri.conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index edf853bb..05ceb855 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "Troubleshooting and RCA Assistant", - "version": "0.2.68", + "version": "0.3.0", "identifier": "com.trcaa.app", "build": { "frontendDist": "../dist",