From af6bbfb776a4749735ea45bea00199f76d37647c Mon Sep 17 00:00:00 2001 From: ZN-Ice Date: Sun, 19 Jul 2026 22:52:10 +0800 Subject: [PATCH] chore: bump version to 0.4.2 Patch release for the Linux headless screenshot glyph-clipping fix (#53): ASCII letters were rendered at half height because the baseline offset divided by units_per_em instead of height_unscaled. Also resyncs Cargo.lock (was stale at 0.3.0). Co-Authored-By: Claude --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- electron-app/package.json | 2 +- release.sh | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fd3fdf2..5a60f2d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -416,7 +416,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "cli-box-cli" -version = "0.3.0" +version = "0.4.2" dependencies = [ "anyhow", "base64", @@ -435,7 +435,7 @@ dependencies = [ [[package]] name = "cli-box-core" -version = "0.3.0" +version = "0.4.2" dependencies = [ "ab_glyph", "async-trait", @@ -466,7 +466,7 @@ dependencies = [ [[package]] name = "cli-box-daemon" -version = "0.3.0" +version = "0.4.2" dependencies = [ "cli-box-core", "tokio", diff --git a/Cargo.toml b/Cargo.toml index a1e394e..73feb1f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ ] [workspace.package] -version = "0.4.1" +version = "0.4.2" edition = "2021" rust-version = "1.88" license = "Apache-2.0" diff --git a/electron-app/package.json b/electron-app/package.json index 09bcc58..453eab0 100644 --- a/electron-app/package.json +++ b/electron-app/package.json @@ -1,6 +1,6 @@ { "name": "cli-box-electron", - "version": "0.4.1", + "version": "0.4.2", "private": true, "main": "./out/main/index.js", "scripts": { diff --git a/release.sh b/release.sh index 60d40da..99f291e 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.1" +VERSION="0.4.2" APP_NAME="CLI Box" # --- helpers ---