From 17794ae2a445c83224b6646c0f2211e2b645ac6a Mon Sep 17 00:00:00 2001 From: ZN-Ice Date: Sun, 19 Jul 2026 11:46:04 +0800 Subject: [PATCH] chore: bump version to 0.4.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ship Linux headless CLI support (#48) as a new release. v0.3.0 has no Linux artifacts — the build-linux job landed in #48 after v0.3.0 was tagged, so a new version is required. 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 74e08e2..dfbff58 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ ] [workspace.package] -version = "0.3.0" +version = "0.4.0" edition = "2021" rust-version = "1.88" license = "Apache-2.0" diff --git a/electron-app/package.json b/electron-app/package.json index aff4d84..baaf75e 100644 --- a/electron-app/package.json +++ b/electron-app/package.json @@ -1,6 +1,6 @@ { "name": "cli-box-electron", - "version": "0.3.0", + "version": "0.4.0", "private": true, "main": "./out/main/index.js", "scripts": { diff --git a/release.sh b/release.sh index c18af65..12da812 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.3.0" +VERSION="0.4.0" APP_NAME="CLI Box" # --- helpers ---