From fe86c5ac9cb418c7da909deebc46cc43cb1330d0 Mon Sep 17 00:00:00 2001 From: SnapOtter Date: Fri, 1 May 2026 21:13:20 +0800 Subject: [PATCH] fix: update APP_VERSION constant to 1.16.0 The health endpoint was reporting 1.15.11 because APP_VERSION in shared/constants.ts was not updated with the version bump. --- packages/shared/src/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/shared/src/constants.ts b/packages/shared/src/constants.ts index feafbb50..f45deb77 100644 --- a/packages/shared/src/constants.ts +++ b/packages/shared/src/constants.ts @@ -1188,7 +1188,7 @@ export const PRINT_LAYOUTS: PrintLayout[] = [ { id: "none", label: "None", width: 0, height: 0 }, ]; -export const APP_VERSION = "1.15.11"; +export const APP_VERSION = "1.16.0"; /** * Tool IDs that require the Python sidecar (AI/ML tools).