From b92db9213aed47edafcc5a6b73566e1dc2270598 Mon Sep 17 00:00:00 2001 From: emozilla Date: Wed, 20 May 2026 14:59:26 -0400 Subject: [PATCH] chore(desktop): bump version to 0.0.1 First non-placeholder version so electron-builder's artifactName template produces `Hermes-0.0.1-win-x64.exe` instead of the obviously-unreleased `Hermes-0.0.0-...`. No release process yet; this just stops the artifact filename from telling users "you got a debug build." Bumped in three slots that all carry the desktop app's version: - apps/desktop/package.json (source of truth) - apps/desktop/package-lock.json (per-app lockfile, kept for CI parity) - root package-lock.json's apps/desktop workspace entry Identity-of-build for first-launch bootstrap continues to come from build/install-stamp.json (commit SHA + builtAt), unchanged. --- apps/desktop/package-lock.json | 4 ++-- apps/desktop/package.json | 2 +- package-lock.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/desktop/package-lock.json b/apps/desktop/package-lock.json index 053bb04f1a..34c1547da2 100644 --- a/apps/desktop/package-lock.json +++ b/apps/desktop/package-lock.json @@ -1,12 +1,12 @@ { "name": "hermes", - "version": "0.0.0", + "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hermes", - "version": "0.0.0", + "version": "0.0.1", "dependencies": { "@assistant-ui/react": "^0.12.28", "@assistant-ui/react-streamdown": "^0.1.11", diff --git a/apps/desktop/package.json b/apps/desktop/package.json index 7cdf55b7dd..71dde4dbbf 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -2,7 +2,7 @@ "name": "hermes", "productName": "Hermes", "private": true, - "version": "0.0.0", + "version": "0.0.1", "description": "Native desktop shell for Hermes Agent.", "author": "Nous Research", "type": "module", diff --git a/package-lock.json b/package-lock.json index 353d057a84..a03dda98b2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -66,7 +66,7 @@ }, "apps/desktop": { "name": "hermes", - "version": "0.0.0", + "version": "0.0.1", "dependencies": { "@assistant-ui/react": "^0.12.28", "@assistant-ui/react-streamdown": "^0.1.11",