From 968050edc9323db150ce0d415f750370fec5fce1 Mon Sep 17 00:00:00 2001 From: ZN-Ice Date: Sun, 19 Jul 2026 15:08:30 +0800 Subject: [PATCH] chore: bump version to 0.4.1 Release v0.4.1 to verify the detached-HEAD fix (#51) in the release workflow. No code changes since v0.4.0; this version's release.yml run should be the first with a fully green macOS job. Co-Authored-By: Claude --- Cargo.toml | 2 +- electron-app/package.json | 2 +- release.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dfbff58..a1e394e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ ] [workspace.package] -version = "0.4.0" +version = "0.4.1" edition = "2021" rust-version = "1.88" license = "Apache-2.0" diff --git a/electron-app/package.json b/electron-app/package.json index baaf75e..09bcc58 100644 --- a/electron-app/package.json +++ b/electron-app/package.json @@ -1,6 +1,6 @@ { "name": "cli-box-electron", - "version": "0.4.0", + "version": "0.4.1", "private": true, "main": "./out/main/index.js", "scripts": { diff --git a/release.sh b/release.sh index 12da812..60d40da 100755 --- a/release.sh +++ b/release.sh @@ -17,7 +17,7 @@ SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" cd "$SCRIPT_DIR" RELEASE_DIR="$SCRIPT_DIR/release" -VERSION="0.4.0" +VERSION="0.4.1" APP_NAME="CLI Box" # --- helpers ---