From 3a3b998fcda01a487f692f438d2e1a52c5368dce Mon Sep 17 00:00:00 2001 From: ZN-Ice Date: Tue, 23 Jun 2026 23:24:27 +0800 Subject: [PATCH] chore: bump version to 0.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bundles since v0.2.8: upgrade command (#43), AI-agent + OpenClaw + 飞书 workflow (#45), and the screenshot-subsystem fixes (#46 — bounded burst-wait settle + awaitFrame rAF-throttle fallback). 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 afed192..74e08e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ ] [workspace.package] -version = "0.2.8" +version = "0.3.0" edition = "2021" rust-version = "1.88" license = "Apache-2.0" diff --git a/electron-app/package.json b/electron-app/package.json index acff5ee..aff4d84 100644 --- a/electron-app/package.json +++ b/electron-app/package.json @@ -1,6 +1,6 @@ { "name": "cli-box-electron", - "version": "0.2.8", + "version": "0.3.0", "private": true, "main": "./out/main/index.js", "scripts": { diff --git a/release.sh b/release.sh index 8a4284a..c18af65 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.2.8" +VERSION="0.3.0" APP_NAME="CLI Box" # --- helpers ---