From 9481aad940a5f2d7d3a730165cf294c2481ada58 Mon Sep 17 00:00:00 2001 From: EMRG Evolution Date: Thu, 6 Aug 2026 07:24:21 +0800 Subject: [PATCH] =?UTF-8?q?emrg:=20bump=20v0.2.5=20=E2=80=94=20GUI=20?= =?UTF-8?q?=E5=AE=8C=E5=85=A8=E9=87=8D=E8=AE=BE=E8=AE=A1=E5=8F=91=E5=B8=83?= =?UTF-8?q?=20(#421)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GUI 重设计(#417 renderer 完整重写 + #418 main.js §7.1 多模型/主题 + #420 CI 修复) 已全部 merge 到 master,bump v0.2.5 发布: - 6 处版本同步:pyproject / __init__ / gui package.json / uv.lock / build-runtime.sh / make-installer.sh(版本一致性测试保障) - 触发 build-release CI 打包验证(rant 验收 6:打包产物 GUI 正常) --- emrg/__init__.py | 2 +- emrg/gui/package.json | 2 +- packaging/build-runtime.sh | 2 +- packaging/make-installer.sh | 2 +- pyproject.toml | 2 +- uv.lock | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/emrg/__init__.py b/emrg/__init__.py index 7599861b..780bfa1c 100644 --- a/emrg/__init__.py +++ b/emrg/__init__.py @@ -1,3 +1,3 @@ """EMRG — a self-evolving AI agent architecture.""" -__version__ = "0.2.4" +__version__ = "0.2.5" diff --git a/emrg/gui/package.json b/emrg/gui/package.json index 98a7b4d5..4f3327e3 100644 --- a/emrg/gui/package.json +++ b/emrg/gui/package.json @@ -1,6 +1,6 @@ { "name": "emrg-gui", - "version": "0.2.4", + "version": "0.2.5", "description": "EMRG GUI — Electron client for the EMRG self-evolving AI agent (Phase 3)", "main": "main.js", "scripts": { diff --git a/packaging/build-runtime.sh b/packaging/build-runtime.sh index 970bc052..c1640b7f 100755 --- a/packaging/build-runtime.sh +++ b/packaging/build-runtime.sh @@ -100,7 +100,7 @@ fi # ── 5. assets/LICENSE/version ── cp "$ROOT/LICENSE" "$DIST/assets/LICENSE" 2>/dev/null || echo "Apache-2.0" > "$DIST/assets/LICENSE" "$PY_BIN" -c "import emrg,sys; sys.path.insert(0,'$DIST/source'); import emrg as e; print(e.__version__)" > "$DIST/version.txt" 2>/dev/null \ - || echo "0.2.4" > "$DIST/version.txt" + || echo "0.2.5" > "$DIST/version.txt" echo "==> runtime size: $(du -sh "$DIST" | cut -f1)" echo "==> runtime built OK" diff --git a/packaging/make-installer.sh b/packaging/make-installer.sh index 6eceda0f..f1de2ca0 100755 --- a/packaging/make-installer.sh +++ b/packaging/make-installer.sh @@ -25,7 +25,7 @@ set -euo pipefail ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" DIST="$ROOT/dist" RUNTIME="$DIST/runtime" -VERSION="$(cat "$RUNTIME/version.txt" 2>/dev/null || echo 0.2.4)" +VERSION="$(cat "$RUNTIME/version.txt" 2>/dev/null || echo 0.2.5)" PLATFORM="${1:-$(uname -s | tr '[:upper:]' '[:lower:]')}" mkdir -p "$DIST/artifacts" diff --git a/pyproject.toml b/pyproject.toml index a0164aae..771e9343 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "emrg" -version = "0.2.4" +version = "0.2.5" description = "EMRG — a self-evolving AI agent architecture" requires-python = ">=3.11" license = { file = "LICENSE" } diff --git a/uv.lock b/uv.lock index 478d3d87..2cca2923 100644 --- a/uv.lock +++ b/uv.lock @@ -35,7 +35,7 @@ wheels = [ [[package]] name = "emrg" -version = "0.2.4" +version = "0.2.5" source = { editable = "." } dependencies = [ { name = "httpx" },